Domanda

I want to map command + P => Ctrl+P in vim. How can I do this? I tried doing

 map <D-P> <C-P>

But this doesn't seem to work, it is still firing print command.

PS: I know i can do this with BetterTouchTool but it is kindof hack. Isn't possible with vim configuration ?

È stato utile?

Soluzione

At first you have to remove default mapping, you could do it in ~/.gvimrc file by the following:

macmenu File.Print key=<nop>

then, you can just map it as usual

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top