Files
dotemacs/lisp/ux/windows.el
2022-01-09 21:19:46 +01:00

12 lines
350 B
EmacsLisp

;;; windows.el --- Configure behavior of Emacs windows -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
;; https://www.emacswiki.org/emacs/WindMove
;; Move point from window to window using Shift and the arrow keys.
(when (fboundp 'windmove-default-keybindings)
(windmove-default-keybindings))
(provide 'ux/windows)
;;; windows.el ends here