Hi. I remember trying this package couple of years ago and it worked well (but probably it was Doom Emacs). But currently, for vanilla Emacs, it doesn't work at all for me.
I'm using the latest macOS, emacs-plus (GNU Emacs 28.1), and my init.el is:
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t)
(package-initialize)
;; bootstrap use-package
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(require 'use-package)
(require 'use-package-ensure)
(setq use-package-always-ensure t)
(use-package reverse-im
:ensure t ; install `reverse-im' using package.el
:demand t ; always load it
:after char-fold ; but only after `char-fold' is loaded
:custom
(reverse-im-char-fold t) ; use lax matching
(reverse-im-read-char-advice-function #'reverse-im-read-char-include)
(reverse-im-input-methods '("ukrainian-computer")) ; translate these methods
:config
(reverse-im-mode t)) ; turn the mode on
But when I'm switching to the UA keyboard it doesn't work:
M-ч is undefined
C-с is undefined
Hi. I remember trying this package couple of years ago and it worked well (but probably it was Doom Emacs). But currently, for vanilla Emacs, it doesn't work at all for me.
I'm using the latest macOS, emacs-plus (GNU Emacs 28.1), and my
init.elis:But when I'm switching to the UA keyboard it doesn't work:
M-ч is undefinedC-с is undefined