I use many shortcuts for my work in vim. Other shortcuts are taken by plugins.
Sometimes I would like to add a shortcut for a new command but note afterwards that the shortcut was already taken.
Is there a way to see a list of all available shortcuts in VIM? (all ctrl-shift-alt shortcuts)
Some other cool Vim search tips/tricks To start off, if you want to search for a word that's there in the file, but you don't want to type it, you can just bring your cursor below it and press * (or shift+8).
In normal mode, typing Ctrl-A will increment the next number, and typing Ctrl-X will decrement the next number. The number can be at the cursor, or to the right of the cursor (on the same line). These are the defaults for Vim, although some scripts remap these keys to perform other functions.
Ctrl-w = tells Vim to assign an equal number of lines to each viewport. To move between the viewports while working, use Ctrl-w j to move down, and Ctrl-w k to move up.
Type :help index
to see the mappings (shortcuts as you name them) and commands defined by vim itself.
Type :map
to see the mappings defined by your vimrc and plugins. Type :verbose map
to know where each mapping was defined.
Also :help map-listing
to check what's displayed, but you probably already know about it (it's in map.txt help manual).
If you also want to check which maps or commands are defined by vim itself you can use
:help index
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With