You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On macOS, glow creates the directory ~/Library/Preferences/glow/ and stores its config in there.
Applications should never write to ~/Library/Preferences. It's basically the macOS equivalent of the Windows registry, and shouldn't be modified directly:
Contains the user’s preferences. You should never create files in this directory yourself. To get or set preference values, you should always use the NSUserDefaults class or an equivalent system-provided interface.
glow should store its config either under ~/Library/Application Support/ (the official directory for app-created files on macOS) or better yet under ~/.config/ (POSIX command-line programs are typically expected to follow POSIX conventions, not macOS ones).
The text was updated successfully, but these errors were encountered:
On macOS, glow creates the directory
~/Library/Preferences/glow/
and stores its config in there.Applications should never write to
~/Library/Preferences
. It's basically the macOS equivalent of the Windows registry, and shouldn't be modified directly:https://developer.apple.com/library/archive/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/MacOSXDirectories/MacOSXDirectories.html
glow should store its config either under
~/Library/Application Support/
(the official directory for app-created files on macOS) or better yet under~/.config/
(POSIX command-line programs are typically expected to follow POSIX conventions, not macOS ones).The text was updated successfully, but these errors were encountered: