You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(general-def
"C-c m" '(set-mark-command:wk"Set Mark"))
;; Remap C-c this way so it works as copy when a region is active
(general-def
:keymaps'override"C-c" (general-predicate-dispatch nil
(region-active-p) 'kill-ring-savet (general-key "C-c":setup (general-override-mode -1) :teardown (general-override-mode))))
;; Simulate C-c using another key
(general-def
"C-x g" (general-key "C-c"))
When pressing C-c, the description of m is Set Mark; When pressing C-x g, the description of m is set-mark-command.
I'm not sure if this is a problem of general.el or which-key.
The text was updated successfully, but these errors were encountered:
Here's an example:
When pressing
C-c
, the description ofm
isSet Mark
; When pressingC-x g
, the description ofm
isset-mark-command
.I'm not sure if this is a problem of
general.el
orwhich-key
.The text was updated successfully, but these errors were encountered: