fixup! feat(meow): Move cursor down after duplicating line

This commit is contained in:
Zelong Kuang
2025-12-11 20:32:50 +11:00
parent 004210ae27
commit 64e91031f3
3 changed files with 20 additions and 10 deletions

View File

@@ -16,9 +16,14 @@
#+end_src
** Keybindings
#+begin_src emacs-lisp
(setq duplicate-line-final-position 1)
(map! :map meow-normal-state-keymap
:leader "d" (lambda () (interactive) (duplicate-dwim) (next-line))
"M-p" 'duplicate-dwim
:desc "Duplicate line/region")
(map! :map meow-normal-state-keymap
:leader "y" 'copy-from-above-command
:desc "Copy from above")
#+end_src
** Appearance settings
#+begin_src emacs-lisp