7

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?

Davorian
  • 145
  • 1
  • 4

1 Answers1

8

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.

Jeremiah Willcock
  • 30,161
  • 7
  • 76
  • 78
  • Ah, that seems rather obvious now. Thanks a lot! – Davorian Jan 24 '11 at 05:42
  • 1
    If you would like to be sure not to interfere with any other plugin, take an available mapping beginning with `` which defaults to a backslash. `:map` will list mappings beginning with this leader key. – Benoit Jan 24 '11 at 06:24
  • 2
    In addition to `:help index`, it may be quicker to check out `:help map-which-keys` which gives you general rules you can follow. – Randy Morris Jan 24 '11 at 19:00