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
|
#+begin_src emacs-lisp
|
||||||
(map! :leader
|
(map! :leader
|
||||||
:desc "Move workspace left"
|
:desc "Move workspace left"
|
||||||
"TAB h" #'+workspace/swap-left
|
"TAB H" #'+workspace/swap-left
|
||||||
:desc "Move workspace right"
|
:desc "Move workspace right"
|
||||||
"TAB l" #'+workspace/swap-right)
|
"TAB L" #'+workspace/swap-right)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
*** Leader Key
|
*** Leader Key
|
||||||
|
|
@ -1271,17 +1271,14 @@ If PARENTS is non-nil, the parents of the specified directory will also be creat
|
||||||
(map! :leader
|
(map! :leader
|
||||||
:desc "Create new project"
|
:desc "Create new project"
|
||||||
"p n" #'create-new-project)
|
"p n" #'create-new-project)
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
*** Misc.
|
*** Misc.
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(map! :leader
|
(map! :leader
|
||||||
:desc "Undo Tree"
|
|
||||||
"o u" #'undo-tree-visualize
|
|
||||||
:desc "Open URL"
|
:desc "Open URL"
|
||||||
"s u" #'goto-address-at-point
|
"s U" #'goto-address-at-point
|
||||||
:desc "Nerd Icons"
|
:desc "Nerd Icons"
|
||||||
"i i" #'nerd-icons-insert)
|
"i i" #'nerd-icons-insert)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue