こんにちは、最近、コマンドをメタ キーにバインドしようとしたときに奇妙な問題が発生しました。これは今日起こり始めたばかりで、本当に混乱しています。
(define-key map (kbd "M-f") 'forward-char)
バインディングのリストには、Ctrl や Hyperなどの定義がありますが、何らかの理由で Meta の組み合わせでバインドしようとすると失敗します。
(define-key map (kbd "C-M-f") 'forward-word)
たとえば、次のようにエラー メッセージが表示されます。
Warning (initialization): An error occurred while loading '/home/flood/.emacs.d/init.el':
error: Key sequence C-M-f starts with non-prefix key
To ensure normal operation, you should investigate and remove the
cause of the error in your initialization file. Start Emacs with
the '--debug-init' option to view a complete error backtrace.
--debug-init で開始すると、役立つものは何も表示されません。これは本当にイライラするアイデアを持っている人はいますか?