fix: resolve conflicting keybinds
This commit is contained in:
parent
3b12716c82
commit
d7c0810002
1 changed files with 3 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue