diff options
| author | Daniel <[email protected]> | 2024-03-19 07:32:24 -0400 |
|---|---|---|
| committer | Daniel <[email protected]> | 2024-03-19 07:32:24 -0400 |
| commit | 333bd9c40f59ef817df1cdfecc015689acf6895f (patch) | |
| tree | d969c5cb0bd6c54d5f3e5506862db434e2d682e5 | |
| parent | 796191c2d7cbc16bc054249b3df8c09a87ffe53f (diff) | |
add global map
| -rw-r--r-- | bard-emacs-modules/bard-emacs-window.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bard-emacs-modules/bard-emacs-window.el b/bard-emacs-modules/bard-emacs-window.el index 5927b21..abd3fca 100644 --- a/bard-emacs-modules/bard-emacs-window.el +++ b/bard-emacs-modules/bard-emacs-window.el @@ -16,8 +16,8 @@ (define-key global-map (kbd "C-M-<left>") #'windmove-left) (define-key global-map (kbd "C-M-S-<up>") #'windmove-swap-states-up) (define-key global-map (kbd "C-M-S-<right>") #'windmove-swap-states-right) -(define-key (kbd "C-M-S-<down>") #'windmove-swap-states-down) -(define-key (kbd "C-M-S-<left>") #'windmove-swap-states-left) +(define-key global-map (kbd "C-M-S-<down>") #'windmove-swap-states-down) +(define-key global-map (kbd "C-M-S-<left>") #'windmove-swap-states-left) (use-package beframe :ensure t |
