Question says it all.
|
Now remember that Vim is a modal editor. It has a normal mode, visual mode and other modes. For each of these sets of mappings, there is a mapping that works in all modes ( For more guidance on this, see:
|
|||||||||||||||||||||
|
|
Caution, |
||||
|
|
|
I think the vim documentation should've explained the meaning behind the naming of these commands. Just telling you what they do doesn't help you remember the names.
See below for what "recursive" means in this context. Prepending mode letters like Use Mode letters:
"Recursive" means that the mapping is expanded to a result, then the result is expanded to another result, and so on. The expansion stops when one of these is true:
At that point, vim's default "meaning" of the final result is applied/executed. "Non-recursive" means the mapping is only expanded once, and that result is applied/executed. Example:
The above causes The mapping of |
||||
|
|