Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vim comma command keys

Tags:

vim

I downloaded this vimrc file. It contains entries for mapping comma seperated keys to certain commands. ie:

map ,e :e <C-R>=expand("%:p:h") . "/" <CR>

What i can't figure out is how to run these commands in Vim.

How to i run ",e"?

like image 428
Mooktakim Ahmed Avatar asked Jul 03 '09 12:07

Mooktakim Ahmed


1 Answers

You would just type , and then e. To verify that it's actually being mapped, you can use the command :map ,e.

like image 178
John Feminella Avatar answered Sep 24 '22 13:09

John Feminella