Add windmove keybindings

This commit is contained in:
2025-01-09 16:29:43 +09:00
parent f4eb08b0e6
commit 76150ffbb5

View File

@@ -96,4 +96,11 @@
;; into kill ring before replacing it. ;; into kill ring before replacing it.
(setq save-interprogram-paste-before-kill t) (setq save-interprogram-paste-before-kill t)
;; Windmove family of commands allow easy navigation when there is more than two
;; buffers on screen.
(global-set-key (kbd "C-S-<left>") 'windmove-left)
(global-set-key (kbd "C-S-<right>") 'windmove-right)
(global-set-key (kbd "C-S-<up>") 'windmove-up)
(global-set-key (kbd "C-S-<down>") 'windmove-down)
;;; 05-basic.el ends here ;;; 05-basic.el ends here