Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i bound caps lock to Crtl in the system keyboard configurations, but how do i rebind a normal key to a modifier key, after rebinding that normal key to a lesser used key?

ie bind \ to ', and ' to Meta correctly (eg Shift ' . is Meta > and everything works just as if ' were Meta).

with this symmetric Crtl/Meta keyboard layout, my hands feel less like contortionists, thus happier.

i've tried vim, but it's modal, so i prefer emacs.

EDIT: if impossible, why doesn't emacs let you do this?

share|improve this question
it's not strictly an answer, but you can try this - xahlee.org/emacs/ergonomic_emacs_keybinding.html – sindikat Apr 28 '12 at 16:14
1  
Try sticky keys so you don't have to twist your hand. It allows pressing keys in multi-keycombos one after the other. It's very convenient when you get used to it. – Tom Apr 28 '12 at 16:24
@Tom very good idea! ergonomic for everything. – sam boosalis Apr 29 '12 at 16:15

1 Answer

(global-set-key (kbd "'") esc-map)
(global-set-key (kbd "'") esc-map)
(global-set-key (kbd "\\") (lambda () (interactive) (insert-char ?' 1)))

The only problem is that you can't hold down Shift-'-> at the same time. You have to hit ' then Shift-> to get the behavior you want.

share|improve this answer
thanks. i'm still looking for the behavior of, for example, holding meta and clicking f a few times to move through a sentence fast. – sam boosalis May 2 '12 at 1:07
Yes, this is a partial solution that is not quite ideal. I wasn't able to find any true solution to match what you were looking for. It might be a good question for the emacs-devel mailing list as there are some real gurus on there; just keep the question short and too the point and see what you get. – Burton Samograd May 2 '12 at 14:34

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.