Home:ALL Converter>Sublime Text: Keyboard shortcut for opening user settings on Windows

Sublime Text: Keyboard shortcut for opening user settings on Windows

Ask Time:2016-07-14T21:56:38         Author:Henry Zhu

Json Formatter

Is the shortcut for opening the user settings in Sublime Text in Windows / Linux Ctrl + ,? I'm assuming this because the command for opening user settings on Mac is Cmd + ,.

Author:Henry Zhu,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/38376211/sublime-text-keyboard-shortcut-for-opening-user-settings-on-windows
Keith Hall :

The Cmd+, keyboard shortcut is OSX specific - the default keybindings for Linux and Windows do not contain anything to open the user settings file.\n\nHowever, you can add it yourself in the user keybindings file.\n\nIn Build 3114, this is accessible from the Preferences -> Keybindings - User menu:\n\n{ \"keys\": [\"ctrl+,\"], \"command\": \"open_file\", \"args\": {\"file\": \"${packages}/User/Preferences.sublime-settings\"} }\n\n\nIn Build 3118, this is accessible from the Preferences -> Keybindings menu:\n\n{ \"keys\": [\"ctrl+,\"], \"command\": \"edit_settings\", \"args\":\n {\n \"base_file\": \"${packages}/Default/Preferences.sublime-settings\",\n \"default\": \"// Settings in here override those in \\\"Default/Preferences.sublime-settings\\\",\\n// and are overridden in turn by syntax-specific settings.\\n{\\n\\t$0\\n}\\n\"\n }\n},\n",
2016-07-14T14:15:09
yy