mirror of
https://github.com/ch11ng/exwm.git
synced 2024-11-23 19:47:58 +01:00
Redefine mode-specific keys
* exwm-core.el (exwm-mode-map): Redefine mode-specific keys to comply with the key binding conventions.
This commit is contained in:
parent
fdfdabf95a
commit
33254c37df
1 changed files with 6 additions and 6 deletions
12
exwm-core.el
12
exwm-core.el
|
@ -120,12 +120,12 @@
|
|||
|
||||
(defvar exwm-mode-map
|
||||
(let ((map (make-sparse-keymap)))
|
||||
(define-key map "\C-ck" #'exwm-input-release-keyboard)
|
||||
(define-key map "\C-cf" #'exwm-layout-set-fullscreen)
|
||||
(define-key map "\C-cm" #'exwm-floating-toggle-floating)
|
||||
(define-key map "\C-cq" #'exwm-input-send-next-key)
|
||||
(define-key map "\C-cv" #'exwm-workspace-move-window)
|
||||
(define-key map "\C-cM" #'exwm-layout-toggle-mode-line)
|
||||
(define-key map "\C-c\C-f" #'exwm-layout-set-fullscreen)
|
||||
(define-key map "\C-c\C-k" #'exwm-input-release-keyboard)
|
||||
(define-key map "\C-c\C-m" #'exwm-workspace-move-window)
|
||||
(define-key map "\C-c\C-q" #'exwm-input-send-next-key)
|
||||
(define-key map "\C-c\C-t\C-f" #'exwm-floating-toggle-floating)
|
||||
(define-key map "\C-c\C-t\C-m" #'exwm-layout-toggle-mode-line)
|
||||
map)
|
||||
"Keymap for `exwm-mode'.")
|
||||
|
||||
|
|
Loading…
Reference in a new issue