You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using org-mode and would like to exit from insert mode by fd while my input-method is alternative. I'v tested russian escape sequence, but it doesn't work.
How to reproduce:
Set (setq-default evil-escape-key-sequence "ав")
Change input-method (set-input-method) to cyrilic-jis-russian
Switch to insert mode, change input method by C-\ and try to exit by pressing keys fd (it will be ав in russian)
Probably there should be a way to define unique escape sequence for each language to make in infrequent.
The text was updated successfully, but these errors were encountered:
As suggested in section 21.7.15 of the elisp manual, handle keyboard
events internally as vectors across the board, rather than preferring
strings when possible. This commit, in combination with the one before
it, fixessyl20bnr#51: `this-command-keys' returns a vector
for most key sequences, so (for instance) the expression
(equal (this-command-keys) "π")
is always nil.
I am using org-mode and would like to exit from insert mode by
fd
while my input-method is alternative. I'v tested russian escape sequence, but it doesn't work.How to reproduce:
(setq-default evil-escape-key-sequence "ав")
(set-input-method)
tocyrilic-jis-russian
C-\
and try to exit by pressing keysfd
(it will beав
in russian)Probably there should be a way to define unique escape sequence for each language to make in infrequent.
The text was updated successfully, but these errors were encountered: