vote up 2 vote down star
1

Using Windows key as Meta is very useful in Emacs, is there the way to do it in Vim?

flag

3 Answers

vote up 3 vote down check

You can use AutoHotkey to map the windows key to a different key. Only activate the mapping when vim is active:

#IfWinActive ahk_class GVIM
RWin::Alt  
LWin::Alt  
#IfWinActive  ; This puts subsequent remappings and hotkeys in effect for all windows.
link|flag
vote up 0 vote down

I never used Vim, but the Windows key is equivalent to pressing Ctrl+Esc, so I guess you could do it if you can map Ctrl+Esc to the Meta function in Vim.

link|flag
Not quite: WIN+R does one thing, CTRL+ESC+R doesn't – Léo Dec 18 '08 at 19:37
vote up 0 vote down

Not quite sure, but the ctrl+esc key combo is a windows only key mapping. It won't help with vim

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.