framework: fix meta keybindings setup
Don't add "~c:" to a keybinding that has "c:". original commit: c8de8d3ae8e0aa7fc280fed8262ecf1dfa73926b
This commit is contained in:
parent
fff2256bb9
commit
c112ceeca7
|
@ -321,7 +321,9 @@
|
|||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
(define (make-meta-prefix-list key)
|
||||
(list (string-append "~c:m:" key)
|
||||
(list (if (regexp-match #rx"(?:^|:)c:" key)
|
||||
(string-append "m:" key)
|
||||
(string-append "~c:m:" key))
|
||||
(string-append "ESC;" key)))
|
||||
|
||||
(define send-map-function-meta
|
||||
|
|
Loading…
Reference in New Issue
Block a user