I think the SublimeText 2 editor has a lot of potential, but I'm struggling to learn the keyboard shortcuts, because unlike Vim it doesn't have comprehensive documentation, or a command to show you what each key combination is bound to.
It's frustrating going through the .sublime-keymap files and find that 4 different packages all rebind ctrl+t for their own purposes.
So, is there a way to view all the keybindings in an organised way: by key, by package, by command - with descriptions?
Currently my hack is a bash function that shows me all the keymap lines that mention a certain key. For example, *sublime_keys '+t'* finds me all the bindings that use the letter "t"
function sublime_keys {
find ~/.config/sublime-text-2/Packages \( -name 'Default (Linux).sublime-keymap' -or -name 'Default.sublime-keymap' \) -print0 | xargs --null ack-grep -C1 "\".*$*"
}
I've tried KeymapManager but it is very limited - only shows bindings from some of the top-level non-default packages without descriptions or package context. I suppose I could take time to improve on it.
Is there a package that does this better?