Sublime Forum

Looking for some keybindings

#1

Hi

I just switched to SublimeText 2…Really like it so far…there is only one thing… the keybindings…

I already have some custom keybindings, but i’m desperate for some more…I just can’t figure out the commands for them…
Is there a list of possible commands somewhere?

And can someone help me with 2 keybindings:

  • What is the command for navigating through the folder tree with the arrow keys? (up and down for navigating and right to open folder, left to close it)

  • What is the command for moving code lines up and down?

Thx for your help
Nessa

0 Likes

#2

as seen in the dev build 2134 notes there isn’t a key binding yet to focus the sidebar.

To move code verticaly by line you can press ctrl+shift+(up/down arrow)

0 Likes

#3

Thx for the reply :smile:

but ctrl+shift+(up/down arrow) don’t do what i want… with that i can select multiple lines and edit them at the same time (super feature btw :wink: but not what i’m looking for)
Keybindings Default looks like this:
{ “keys”: “ctrl+shift+up”], “command”: “select_lines”, “args”: {“forward”: false} },
{ “keys”: “ctrl+shift+down”], “command”: “select_lines”, “args”: {“forward”: true} },

0 Likes

#4

Your best bet for looking up commands is to browse through the menu definition, in Packages/Default/Main.sublime-menu

0 Likes

#5

super !!! found it :smile: it’s ctrl+super+up :smile:
now i only can hope that they add the navigation thingie soon :wink:

0 Likes