Conversation:
Notices
-
!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-\
-
@valkov Can you just not use the compose key? You get easy non-ascii everywhere then. !emacs
-
@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
-
Here is how I do it : (global-set-key (kbd "M-ф") 'forward-word) The "M" is latin.
-
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.
-
@valkov Here is how I do it : (global-set-key (kbd "M-ф") 'forward-word) The "M" is latin.
-
@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.
-
@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