[:input layout bepo] Remove "W" convenience remap

`W` was used to emulate `C-w C-w`, which is useful to quickly change windows
most of the time. But this currently conflicts with edebug evil-collection bindings.
(gives `Key sequence W W starts with non-prefix key W`).

Better to leave the key alone, avoid error messages altogether, and let users redefine
the binding if they want to.
This commit is contained in:
Gerry Agbobada 2021-06-13 13:33:20 +02:00 committed by GitHub
parent 2731685095
commit cbfd2fadc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -189,8 +189,7 @@ See `+layout-bepo-cr-rotation-style' for the meaning of CR-STYLE."
'(evil-normal-state-map evil-motion-state-map evil-operator-state-map) '(evil-normal-state-map evil-motion-state-map evil-operator-state-map)
"é" "w" "é" "w"
"É" "W" "É" "W"
"w" (kbd "C-w") "w" (kbd "C-w"))))
"W" (kbd "C-w C-w"))))
;;;###autoload ;;;###autoload
(defun +layout-bepo-rotate-keymaps (keymaps &optional cr-style) (defun +layout-bepo-rotate-keymaps (keymaps &optional cr-style)
@ -324,5 +323,4 @@ Remappings are done according to CR-STYLE (see
(evil-collection-translate-key '(normal motion operator visual) keymaps (evil-collection-translate-key '(normal motion operator visual) keymaps
"é" "w" "é" "w"
"É" "W" "É" "W"
"w" (kbd "C-w") "w" (kbd "C-w"))))
"W" (kbd "C-w C-w"))))