मैं एक कुंजी 'कोड' से वापस अपने कीबोर्ड समतुल्यता पर कैसे जा सकता हूं?


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-descriptionजब आप आह्वान दस्तावेज में एक आदमियत पठनीय कुंजी प्रदर्शित करने के लिए प्रयोग किया जाता है describe-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
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.