diff --git a/config.org b/config.org index 5cef780..334f67f 100644 --- a/config.org +++ b/config.org @@ -148,7 +148,7 @@ (global-set-key (kbd "C-c o m") 'magit) (global-set-key (kbd "C-.") 'kylekrein/duplicate-line) -(windmove-default-keybindings) ;; move between windows with S-, S-, S-, S- +;;(windmove-default-keybindings) ;; move between windows with S-, S-, S-, S- #+end_src ** Focus new windows Found this [[https://emacs.stackexchange.com/questions/21770/automatically-switch-focus-to-new-window][here]] and [[https://github.com/snackon/Witchmacs#creating-a-new-window-switches-your-cursor-to-it][here]] @@ -1710,12 +1710,16 @@ one, an error is signaled." (select-window other-win)))) #+end_src #+begin_src emacs-lisp - (use-package windmove - :bind - (("" . buf-move-up) - ("" . buf-move-down) - ("" . buf-move-left) - ("" . buf-move-right))) + (use-package windmove + :bind + (("" . windmove-up) + ("" . windmove-down) + ("" . windmove-left) + ("" . windmove-right) + ("" . buf-move-up) + ("" . buf-move-down) + ("" . buf-move-left) + ("" . buf-move-right))) #+end_src * Completions ** Corfu