キー「コード」からキーボードの同等性に戻るにはどうすればよいですか?


9

次のドキュメントがあります。

mc/keymap is a variable defined in `multiple-cursors-core.el'.
Its value is (keymap
 (67108903 . mc-hide-unmatched-lines-mode)
 (27 keymap
     (118 . mc/cycle-backward))
 (22 . mc/cycle-forward)
 (return . multiple-cursors-mode)
 (7 . mc/keyboard-quit))


Documentation:
Keymap while multiple cursors are active.
Main goal of the keymap is to rebind C-g and <return> to conclude
multiple cursors editing.

[back]

私はそれを知っているC-gC-vされている722、それぞれが、私は他の人のいずれかが何であるかさっぱりだが。これを行うために使用できる関数はありますか?

(equal (??? (kbd x)) x) => t

回答:


14

help-key-descriptiondescribe-keyC-hk)を呼び出したときに、ドキュメントに人間が読めるキーを表示するために使用されます。

(help-key-description [22] nil)       ;; --> "C-v"

(help-key-description [67108903] nil) ;; --> "C-'"

または

(string=
  (help-key-description (kbd "C-g") nil)
  "C-g")
;; --> t
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.