Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using GVIM under Windows. And want to map CAPSLOCK to Ctrl+^

Any way to do this?

Btw, I see tons of samples over the web how to swap CAPS and Esc using registry hack, but none of them use VIM map command, instead external tools and registry changes.

share|improve this question
I think you should choose Dan Andreatta's answer below. – Patrick Klingemann Jun 15 '12 at 5:01

5 Answers

up vote 5 down vote accepted

Capslock (and Control, and Shift etc.) is a modifier key, which means that it's used with another normal key to modify the meaning of that key. AFAIK the OS does not pass the modifier keys to the application unless a normal key has also been pressed, e.g. pressing CTRL will not be seen by the application, but CTRL-C will be.

share|improve this answer
4  
Not quite. It is perfectly possible for an application to detect ctrl, shift, alt and windows key presses. The problem with keys like Caps Lock and Num Lock is that the OS insists on interpreting them as a toggling key. – Wim Coenen Feb 1 '10 at 15:00
So can you use it to toggle between insert and command modes? Or is there something implied by your statement that I'm not aware of? – iconoclast Nov 2 '12 at 15:14

Linux? With X, use xmodmap to alter the key mapping, e.g.

xmodmap -e 'clear Lock' -e 'keycode 0x42 = Escape'

Will map Esc to the CapsLock key. Google for more examples.

share|improve this answer
2  
I would have given you a point except you said "Google for more examples" instead of providing a link. Whenever somebody does that they always end up at the top of the mentioned Google results: google.com/search?q=vim+remap+escape+capslock – Gerry Jul 7 '12 at 21:25

Under windows? Use AutoHotkey. It's not a vim mapping, but as the others have stated you can't map it. I use AHK to map my CAPSLOCK to CTRL.

share|improve this answer
See example AutoHotkey scripts in Vim Tips wiki: Map caps lock to escape in Windows – AutoHotkey. – Rory O'Kane Jan 21 at 1:17

I dont think you can. I believe CAPS-LOCK is probably translated by the OS before vim ever sees it. So you'd need to do a hack at the OS level, like the registry hacks you've already seen.

EDIT: autohotkey looks like it could be used to bridge the vim-OS gap. This way a thirdparty app is doing the hacks at the OS level, and you're just hooking that app.

share|improve this answer

Since there is a solution for Linux and Windows(Autohotkey), I´d like to suggest to use pckeyboardhack for Mac to remap CapsLock everywhere.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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