I downloaded this vimrc file. It contains entries for matching comma-separated keys to specific commands. i.e:
map ,e :e <CR>=expand("%:p:h") . "/" <CR>
I cannot figure out how to run these commands in Vim.
How to run ", e"?
You just type, and then e . To make sure that it is actually displayed, you can use the command :map ,e .
e
:map ,e
If you use these cards, you will also want to use
nnoremap ,, ,
Thus, you can have functionality (repeat the last fFtT movement, but in the opposite direction). This is sometimes useful, although not as useful, as this edit file on the current file directory map that you have.
fFtT
Press ESC and then enter ,e
,e
ESC will confirm that you are out of insert mode (if you entered it)
just enter it
thats it, since the display is a normal display, it should work in normal, visual, and operator-pending mode. cm.
:h 40.1
in vim, for help on map modes