Conversation:
Notices
-
valkov (valkov)'s status on Saturday, 16-Jun-2012 15:22:25 EDT
valkov
!emacs Any ideas how to map non-ascii chars for Emacs key-binding, so M-ф (Cyrillic f) = M-f? For all bindings & w/ ~no effort? Tired of C-\ -
mjog (mjog)'s status on Saturday, 16-Jun-2012 16:07:38 EDT
mjog
@valkov Can you just not use the compose key? You get easy non-ascii everywhere then. !emacs -
valkov (valkov)'s status on Saturday, 16-Jun-2012 16:32:32 EDT
valkov
@mjog Probably I was cryptic. When I type Cyrillic text I often try to use key-bindings, but b/c of the layout I get M-ф instead M-f. !emacs -
wayp (wayp)'s status on Saturday, 16-Jun-2012 18:49:02 EDT
wayp
Here is how I do it : (global-set-key (kbd "M-ф") 'forward-word) The "M" is latin. -
wayp (wayp)'s status on Saturday, 16-Jun-2012 18:56:46 EDT
wayp
As for the "no effort" part... I don't know about that... I bind all commands manually in an .el file and require it in .emacs. -
wayp (wayp)'s status on Saturday, 16-Jun-2012 19:21:30 EDT
wayp
@valkov Here is how I do it : (global-set-key (kbd "M-ф") 'forward-word) The "M" is latin. -
wayp (wayp)'s status on Saturday, 16-Jun-2012 19:21:53 EDT
wayp
@valkov As for the "no effort" part... I don't know about that... I bind commands manually in an .el file and require it in .emacs. -
valkov (valkov)'s status on Sunday, 17-Jun-2012 06:06:09 EDT
valkov
@wayp Thanks. Will work for few bindings I use often. Reading docs to see if I can map Cyrillic to Latin when M- & C- are held: input events
-