framework: fix meta keybindings setup
Don't add "~c:" to a keybinding that has "c:".
This commit is contained in:
parent
eb98ab58cb
commit
c8de8d3ae8
|
@ -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