82ecd61f5c
Change-Id: I6c6847fac56f0a9a1a2209792e00a3aec5e672b9 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10809 Autosubmit: aspen <root@gws.fyi> Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI Reviewed-by: lukegb <lukegb@tvl.fyi>
37 lines
1.4 KiB
EmacsLisp
37 lines
1.4 KiB
EmacsLisp
;;; /autoload/evil.el -*- lexical-binding: t; -*-
|
|
;;;###if (featurep! :feature evil)
|
|
|
|
;;;###autoload (autoload '+hlissner:multi-next-line "/autoload/evil" nil t)
|
|
(evil-define-motion +hlissner:multi-next-line (count)
|
|
"Move down 6 lines."
|
|
:type line
|
|
(let ((line-move-visual (or visual-line-mode (derived-mode-p 'text-mode))))
|
|
(evil-line-move (* 6 (or count 1)))))
|
|
|
|
;;;###autoload (autoload '+hlissner:multi-previous-line "/autoload/evil" nil t)
|
|
(evil-define-motion +hlissner:multi-previous-line (count)
|
|
"Move up 6 lines."
|
|
:type line
|
|
(let ((line-move-visual (or visual-line-mode (derived-mode-p 'text-mode))))
|
|
(evil-line-move (- (* 6 (or count 1))))))
|
|
|
|
;;;###autoload (autoload '+hlissner:cd "/autoload/evil" nil t)
|
|
(evil-define-command +hlissner:cd ()
|
|
"Change `default-directory' with `cd'."
|
|
(interactive "<f>")
|
|
(cd input))
|
|
|
|
;;;###autoload (autoload '+hlissner:kill-all-buffers "/autoload/evil" nil t)
|
|
(evil-define-command +hlissner:kill-all-buffers (&optional bang)
|
|
"Kill all buffers. If BANG, kill current session too."
|
|
(interactive "<!>")
|
|
(if bang
|
|
(+workspace/kill-session)
|
|
(doom/kill-all-buffers)))
|
|
|
|
;;;###autoload (autoload '+hlissner:kill-matching-buffers "/autoload/evil" nil t)
|
|
(evil-define-command +hlissner:kill-matching-buffers (&optional bang pattern)
|
|
"Kill all buffers matching PATTERN regexp. If BANG, only match project
|
|
buffers."
|
|
(interactive "<a>")
|
|
(doom/kill-matching-buffers pattern bang))
|