sublimetext2 - How do I create a open folder keyboard shortcut in Sublime Text? -
i know add keyboard shortcuts, go keyboard bindings - user
, edit json file. have lot of keyboard customizations.
[ { "keys": ["ctrl+shift+."], "command": "erb" }, { "keys": ["alt+i"], "command": "expand_tabs" }, { "keys": ["alt+ctrl+w"], "command": "close_all" }, { "keys": ["ctrl+t"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, // swap keybindings paste , paste_and_indent { "keys": ["ctrl+v"], "command": "paste_and_indent" }, { "keys": ["ctrl+shift+v"], "command": "paste" }, // swap keybindings save , save_all { "keys": ["ctrl+s"], "command": "save_all" }, { "keys": ["ctrl+shift+v"], "command": "save" } ]
i need know command open folder. tried obvious open_folder
didn't work.
i found answer in sublime text 2 forums. command prompt_open_folder
. added keyboard bindings.
[ // open folder shortcut { "keys": ["ctrl+shift+o"], "command": "prompt_open_folder"} ]
Comments
Post a Comment