Skip to content

Instantly share code, notes, and snippets.

@pixmin
Last active January 14, 2019 10:33
Show Gist options
  • Select an option

  • Save pixmin/d2d6b6ac9d69c85ffbceca9a907c5c17 to your computer and use it in GitHub Desktop.

Select an option

Save pixmin/d2d6b6ac9d69c85ffbceca9a907c5c17 to your computer and use it in GitHub Desktop.
Sublime Key bindings (Linux) - BMS
[
{ "keys": ["f5"], "command": "refresh_folder_list" },
{ "keys": ["ctrl+k", "ctrl+r"], "command": "revert"},
{ "keys": ["ctrl+alt+o"], "command": "prompt_open_folder" },
{ "keys": ["ctrl+k", "ctrl+m"], "command": "toggle_menu"},
{ "keys": ["ctrl+k", "ctrl+p"], "command": "toggle_minimap"},
{ "keys": ["ctrl+k", "ctrl+space"], "command": "set_setting", "args": {"setting": "draw_white_space", "value": "all"} },
{ "keys": ["ctrl+k", "ctrl+space", "ctrl+space"], "command": "set_setting", "args": {"setting": "draw_white_space", "value": "none"} },
{ "keys": ["ctrl+0"], "command": "reset_font_size" },
{ "keys": ["ctrl+k", "ctrl+r", "ctrl+8"], "command": "set_setting", "args": {"setting": "rulers", "value": [80]} },
{ "keys": ["ctrl+k", "ctrl+r", "ctrl+0"], "command": "set_setting", "args": {"setting": "rulers", "value": []} },
{ "keys": ["super+alt+t", "2"], "command": "set_setting", "args": {"setting": "tab_size", "value": 2} },
{ "keys": ["ctrl+k", "ctrl+n"], "command": "toggle_minimap" },
{ "keys": ["super+alt+t", "4"], "command": "set_setting", "args": {"setting": "tab_size", "value": 4} },
{ "keys": ["ctrl+k", "ctrl+i"], "command": "reindent"},
{ "keys": ["ctrl+k", "ctrl+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"}},
{ "keys": ["ctrl+k", "ctrl+l"], "command": "reveal_in_side_bar"},
{ "keys": ["ctrl+k", "ctrl+s"], "command": "edit_settings", "args":
{
"base_file": "${packages}/Default/Preferences.sublime-settings",
"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"
}
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment