Last active
February 4, 2022 06:38
-
-
Save pouriaalmassi/dfd2d3ec07282c9013de4e36d04413ef to your computer and use it in GitHub Desktop.
Xcode keybindings for Sublime Text
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": ["alt+super+["], "command": "swap_line_up" }, | |
{ "keys": ["alt+super+]"], "command": "swap_line_down" }, | |
{ "keys": ["ctrl+i"], "command": "reindent", "args": {"single_line": false}}, | |
{ "keys": ["alt+0"], "command": "toggle_side_bar" }, | |
{ "keys": ["super+alt+left"], "command": "fold" }, | |
{ "keys": ["super+alt+right"], "command": "unfold" }, | |
{ "keys": ["alt+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} }, | |
{ "keys": ["alt+shift+j"], "command": "reveal_in_side_bar"}, | |
{ "keys": ["alt+shift+o"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
{ "keys": ["alt+shift+p"], "command": "show_overlay", "args": {"overlay": "command_palette"} }, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment