This commit lazy loads Doom's custom ex commands. To add your own, you'll need to wrap them in (after! evil-ex ...).
228 lines
8.4 KiB
EmacsLisp
228 lines
8.4 KiB
EmacsLisp
;; editor/evil/autoload/evil.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autodef
|
|
(defun set-evil-initial-state! (modes state)
|
|
"Set the initialize STATE of MODES using `evil-set-initial-state'."
|
|
(declare (indent defun))
|
|
(after! evil
|
|
(if (listp modes)
|
|
(dolist (mode (doom-enlist modes))
|
|
(evil-set-initial-state mode state))
|
|
(evil-set-initial-state modes state))))
|
|
|
|
|
|
;;
|
|
;;; Interactive commands
|
|
|
|
;;;###autoload
|
|
(defun +evil/visual-indent ()
|
|
"vnoremap < <gv"
|
|
(interactive)
|
|
(evil-shift-right (region-beginning) (region-end))
|
|
(evil-normal-state)
|
|
(evil-visual-restore))
|
|
|
|
;;;###autoload
|
|
(defun +evil/visual-dedent ()
|
|
"vnoremap > >gv"
|
|
(interactive)
|
|
(evil-shift-left (region-beginning) (region-end))
|
|
(evil-normal-state)
|
|
(evil-visual-restore))
|
|
|
|
;;;###autoload
|
|
(defun +evil/paste-preserve-register ()
|
|
"Call `evil-paste-after' without overwriting the clipboard (by writing to the
|
|
0 register instead). This allows you to paste the same text again afterwards."
|
|
(interactive)
|
|
(let ((evil-this-register ?0))
|
|
(call-interactively #'evil-paste-after)))
|
|
|
|
(defun +evil--window-swap (direction)
|
|
"Move current window to the next window in DIRECTION.
|
|
If there are no windows there and there is only one window, split in that
|
|
direction and place this window there. If there are no windows and this isn't
|
|
the only window, use evil-window-move-* (e.g. `evil-window-move-far-left')."
|
|
(when (window-dedicated-p)
|
|
(user-error "Cannot swap a dedicated window"))
|
|
(let* ((this-window (selected-window))
|
|
(this-buffer (current-buffer))
|
|
(that-window (windmove-find-other-window direction nil this-window))
|
|
(that-buffer (window-buffer that-window)))
|
|
(when (or (minibufferp that-buffer)
|
|
(window-dedicated-p this-window))
|
|
(setq that-buffer nil that-window nil))
|
|
(if (not (or that-window (one-window-p t)))
|
|
(funcall (pcase direction
|
|
('left #'evil-window-move-far-left)
|
|
('right #'evil-window-move-far-right)
|
|
('up #'evil-window-move-very-top)
|
|
('down #'evil-window-move-very-bottom)))
|
|
(unless that-window
|
|
(setq that-window
|
|
(split-window this-window nil
|
|
(pcase direction
|
|
('up 'above)
|
|
('down 'below)
|
|
(_ direction))))
|
|
(with-selected-window that-window
|
|
(switch-to-buffer (doom-fallback-buffer)))
|
|
(setq that-buffer (window-buffer that-window)))
|
|
(with-selected-window this-window
|
|
(switch-to-buffer that-buffer))
|
|
(with-selected-window that-window
|
|
(switch-to-buffer this-buffer))
|
|
(select-window that-window))))
|
|
|
|
;;;###autoload
|
|
(defun +evil/window-move-left () "See `+evil--window-swap'" (interactive) (+evil--window-swap 'left))
|
|
;;;###autoload
|
|
(defun +evil/window-move-right () "See `+evil--window-swap'" (interactive) (+evil--window-swap 'right))
|
|
;;;###autoload
|
|
(defun +evil/window-move-up () "See `+evil--window-swap'" (interactive) (+evil--window-swap 'up))
|
|
;;;###autoload
|
|
(defun +evil/window-move-down () "See `+evil--window-swap'" (interactive) (+evil--window-swap 'down))
|
|
|
|
;;;###autoload
|
|
(defun +evil/easymotion ()
|
|
"Invoke and lazy-load `evil-easymotion' without compromising which-key
|
|
integration."
|
|
(interactive)
|
|
(let ((prefix (this-command-keys)))
|
|
(evil-define-key* 'motion 'global prefix nil)
|
|
(evilem-default-keybindings (key-description prefix))
|
|
(setq prefix-arg current-prefix-arg
|
|
unread-command-events
|
|
(mapcar (lambda (e) (cons t e))
|
|
(vconcat (when evil-this-operator
|
|
(where-is-internal evil-this-operator
|
|
evil-normal-state-map
|
|
t))
|
|
prefix)))))
|
|
|
|
;;;###autoload (autoload '+evil:apply-macro "editor/evil/autoload/evil" nil t)
|
|
(evil-define-operator +evil:apply-macro (beg end)
|
|
"Apply macro to each line."
|
|
:move-point nil
|
|
(interactive "<r>")
|
|
(let ((register (or evil-this-register (read-char)))
|
|
macro)
|
|
(cond ((or (and (eq register ?@) (eq evil-last-register ?:))
|
|
(eq register ?:))
|
|
(setq macro (lambda () (evil-ex-repeat nil))
|
|
evil-last-register ?:))
|
|
((eq register ?@)
|
|
(unless evil-last-register
|
|
(user-error "No previously executed keyboard macro."))
|
|
(setq macro (evil-get-register evil-last-register t)))
|
|
((setq macro (evil-get-register register t)
|
|
evil-last-register register)))
|
|
(unless macro
|
|
(user-error "No macro recorded in %c register" register))
|
|
(evil-change-state 'normal)
|
|
(evil-with-single-undo
|
|
(let ((lines (count-lines beg end)))
|
|
(message "Applied macro in %c register %d times" register lines)
|
|
(apply-macro-to-region-lines beg end macro)
|
|
(message "Applied macro in %c register %d times...DONE" register lines)))))
|
|
|
|
;;;###autoload (autoload '+evil:retab "editor/evil/autoload/evil" nil t)
|
|
(evil-define-operator +evil:retab (&optional beg end)
|
|
"Wrapper around `doom/retab'."
|
|
:motion nil :move-point nil :type line
|
|
(interactive "<r>")
|
|
(doom/retab beg end))
|
|
|
|
;;;###autoload (autoload '+evil:narrow-buffer "editor/evil/autoload/evil" nil t)
|
|
(evil-define-operator +evil:narrow-buffer (beg end &optional bang)
|
|
"Wrapper around `doom/clone-and-narrow-buffer'."
|
|
:move-point nil
|
|
(interactive "<r><!>")
|
|
(doom/clone-and-narrow-buffer beg end bang))
|
|
|
|
;;;###autoload
|
|
(defun +evil/next-beginning-of-method (count)
|
|
"Jump to the beginning of the COUNT-th method/function after point."
|
|
(interactive "p")
|
|
(beginning-of-defun (- count)))
|
|
|
|
;;;###autoload
|
|
(defun +evil/previous-beginning-of-method (count)
|
|
"Jump to the beginning of the COUNT-th method/function before point."
|
|
(interactive "p")
|
|
(beginning-of-defun count))
|
|
|
|
;;;###autoload
|
|
(defalias #'+evil/next-end-of-method #'end-of-defun
|
|
"Jump to the end of the COUNT-th method/function after point.")
|
|
|
|
;;;###autoload
|
|
(defun +evil/previous-end-of-method (count)
|
|
"Jump to the end of the COUNT-th method/function before point."
|
|
(interactive "p")
|
|
(end-of-defun (- count)))
|
|
|
|
;;;###autoload
|
|
(defun +evil/next-preproc-directive (count)
|
|
"Jump to the COUNT-th preprocessor directive after point.
|
|
|
|
By default, this only recognizes C preproc directives. To change this see
|
|
`+evil-preprocessor-regexp'."
|
|
(interactive "p")
|
|
;; TODO More generalized search, to support directives in other languages?
|
|
(if (re-search-forward +evil-preprocessor-regexp nil t count)
|
|
(goto-char (match-beginning 0))
|
|
(user-error "No preprocessor directives %s point"
|
|
(if (> count 0) "after" "before"))))
|
|
|
|
;;;###autoload
|
|
(defun +evil/previous-preproc-directive (count)
|
|
"Jump to the COUNT-th preprocessor directive before point.
|
|
|
|
See `+evil/next-preproc-directive' for details."
|
|
(interactive "p")
|
|
(+evil/next-preproc-statement (- count)))
|
|
|
|
;;;###autoload
|
|
(defun +evil/next-comment (count)
|
|
"Jump to the beginning of the COUNT-th commented region after point."
|
|
(interactive "p")
|
|
(let ((orig-pt (point)))
|
|
(require 'newcomment)
|
|
(dotimes (_ (abs count))
|
|
(cond ((> count 0)
|
|
(while (and (not (eobp)) (sp-point-in-comment))
|
|
(next-line))
|
|
(unless (comment-search-forward (point-max) 'noerror)
|
|
(goto-char orig-pt)
|
|
(user-error "No comment after point")))
|
|
(t
|
|
(while (and (not (bobp)) (sp-point-in-comment))
|
|
(previous-line))
|
|
(unless (comment-search-backward nil 'noerror)
|
|
(goto-char orig-pt)
|
|
(user-error "No comment before point")))))))
|
|
|
|
;;;###autoload
|
|
(defun +evil/previous-comment (count)
|
|
"Jump to the beginning of the COUNT-th commented region before point."
|
|
(interactive "p")
|
|
(+evil/next-comment (- count)))
|
|
|
|
|
|
;;
|
|
;;; wgrep
|
|
|
|
;;;###autoload (autoload '+evil-delete "editor/evil/autoload/evil" nil t)
|
|
(evil-define-operator +evil-delete (beg end type register yank-handler)
|
|
"A wrapper around `evil-delete' for `wgrep' buffers that will invoke
|
|
`wgrep-mark-deletion' on lines you try to delete."
|
|
(interactive "<R><x><y>")
|
|
(condition-case _ex
|
|
(evil-delete beg end type register yank-handler)
|
|
('text-read-only
|
|
(evil-apply-on-block
|
|
(lambda (beg _)
|
|
(goto-char beg)
|
|
(call-interactively #'wgrep-mark-deletion))
|
|
beg (1- end) nil))))
|