museoa / bqn-mode

Emacs mode for BQN programming language
GNU General Public License v3.0
34 stars 20 forks source link

Error: Can’t activate input method ‘BQN-Z’ #23

Closed oantolin closed 1 year ago

oantolin commented 1 year ago

If your first interaction with bqn-mode in a given Emacs session is to open a REPL via bqn-comint-run-process, you get the error message in the title. A simple fix is to require bqn-key-prefix in bqn-comint.el.

(The fact that bqn-comint-run-process has autoload suggests one should be able to run it first thing.)

oantolin commented 1 year ago

For now I'm using this workaround in my personal configuration: (use-package bqn-key-prefix :after bqn-comint).

AndersonTorres commented 1 year ago

@oantolin can you verify if it is fixed now?

oantolin commented 1 year ago

Yep, that fixes it. Thanks!