키 '코드'에서 키보드 동등성으로 돌아가려면 어떻게해야합니까?


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-g하고 C-v있습니다 7하고 22, 각각,하지만 난 다른 사람의가 무엇인지 아무 생각도 없어. 이를 위해 사용할 수있는 기능이 있습니까?

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

답변:


14

help-key-descriptiondescribe-key( C-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.