Is there a way to list all the default normal, visual and insert mode bindings in vim?
When you use the :map command without any parameters, it seems开发者_开发技巧 that it only lists custom and plugin bindings. Is there a way to view ALL bindings? It would be nice to know if a custom binding would conflict with one of the defaults.
Alternatively, is there a decent online reference?
There is a list of all of the standard key bindings that you can get by typing :help index
. Those are in addition to the custom ones printed out by :map
.
精彩评论