From d7c08100026b61b49cd189e263bbb9af969b13c4 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Mon, 17 Feb 2025 15:42:41 -0500 Subject: [PATCH] fix: resolve conflicting keybinds --- config.org | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/config.org b/config.org index b677b12..e6ae040 100644 --- a/config.org +++ b/config.org @@ -1200,9 +1200,9 @@ I like to reorganize my workspaces, so we can add bindings to change the workspa #+begin_src emacs-lisp (map! :leader :desc "Move workspace left" - "TAB h" #'+workspace/swap-left + "TAB H" #'+workspace/swap-left :desc "Move workspace right" - "TAB l" #'+workspace/swap-right) + "TAB L" #'+workspace/swap-right) #+end_src *** Leader Key @@ -1271,17 +1271,14 @@ If PARENTS is non-nil, the parents of the specified directory will also be creat (map! :leader :desc "Create new project" "p n" #'create-new-project) - #+end_src *** Misc. #+begin_src emacs-lisp (map! :leader - :desc "Undo Tree" - "o u" #'undo-tree-visualize :desc "Open URL" - "s u" #'goto-address-at-point + "s U" #'goto-address-at-point :desc "Nerd Icons" "i i" #'nerd-icons-insert) #+end_src