|
Ctrl+Alt+P to get a dialog for opening all your Sublime projects. Ctrl+R for navigating to functions or classes within the current file. SublimeClang gives you Visual Studio-style Intellisense, static analysis, and jump to definition/implementation. When setting up Vim emulation, you'll need to install VintageEx and change some of the default bindings (Ctrl+Shift+P+"key" to see the binding files). You'll also want SublimeBlockCursor. For example, put the following in the user defined keymap to override the defaults:
[
{ "keys": ["ctrl+f"], "command": "move", "args": {"by": "pages", "forward": true} },
{ "keys": ["ctrl+b"], "command": "move", "args": {"by": "pages", "forward": false} },
{ "keys": ["ctrl+shift+f"], "command": "move", "args": {"by": "pages", "forward": true, "extend": true} },
{ "keys": ["ctrl+shift+b"], "command": "move", "args": {"by": "pages", "forward": false, "extend": true} }
] |