fix: resolve conflicting keybinds

This commit is contained in:
Kiana Sheibani 2025-02-17 15:42:41 -05:00
parent 3b12716c82
commit d7c0810002
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -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