Skip to content

Commit

Permalink
tweak(keybindings): minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed May 19, 2024
1 parent b877057 commit 30fe88e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/me-keybindings.el
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@

;; ====== Insert ======
"i" '(nil :wk "insert")
"iu" '(insert-char :wk "Unicode char")
"iu" #'insert-char
"ip" #'yank-pop ;; Will be overwritten with `consult-yank-pop'
"ie" `(,(when (>= emacs-major-version 29) #'emoji-search) :wk "Emoji")
"ie" (when (>= emacs-major-version 29) #'emoji-search)

;; ====== Window ======
"w" '(nil :wk "window")
Expand All @@ -155,7 +155,7 @@

;; ====== Applications (Open) ======
"o" '(nil :wk "open")
"o-" '(dired :wk "Dired") ;; Will be overwritten if dirvish is used
"o-" #'dired-jump ;; Will be overwritten if `dirvish' is used
"oa" #'org-agenda
"oe" #'eshell
"o=" #'calc
Expand Down

0 comments on commit 30fe88e

Please sign in to comment.