2019-04-21 19:59:44 -04:00
|
|
|
;; editor/evil/autoload/evil.el -*- lexical-binding: t; -*-
|
2017-01-31 19:50:02 -05:00
|
|
|
|
2018-06-15 02:58:12 +02:00
|
|
|
;;;###autodef
|
|
|
|
(defun set-evil-initial-state! (modes state)
|
2018-06-19 11:59:23 +02:00
|
|
|
"Set the initialize STATE of MODES using `evil-set-initial-state'."
|
2018-06-22 01:30:27 +02:00
|
|
|
(declare (indent defun))
|
2018-06-15 02:58:12 +02:00
|
|
|
(after! evil
|
|
|
|
(if (listp modes)
|
2018-06-19 11:59:23 +02:00
|
|
|
(dolist (mode (doom-enlist modes))
|
2018-06-15 02:58:12 +02:00
|
|
|
(evil-set-initial-state mode state))
|
|
|
|
(evil-set-initial-state modes state))))
|
|
|
|
|
2018-05-25 00:46:11 +02:00
|
|
|
|
2019-06-17 12:05:54 +02:00
|
|
|
;;
|
|
|
|
;;; Interactive commands
|
2018-05-25 00:46:11 +02:00
|
|
|
|
2017-02-19 18:14:46 -05:00
|
|
|
;;;###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))
|
|
|
|
|
2018-05-07 18:16:46 +02:00
|
|
|
;;;###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)))
|
|
|
|
|
2017-05-15 13:52:22 +02:00
|
|
|
(defun +evil--window-swap (direction)
|
2019-03-09 02:42:03 -05:00
|
|
|
"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')."
|
2018-01-06 01:23:22 -05:00
|
|
|
(when (window-dedicated-p)
|
|
|
|
(user-error "Cannot swap a dedicated window"))
|
|
|
|
(let* ((this-window (selected-window))
|
2017-09-25 13:02:20 +02:00
|
|
|
(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)
|
2018-01-06 01:23:22 -05:00
|
|
|
(window-dedicated-p this-window))
|
2017-09-25 13:02:20 +02:00
|
|
|
(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))))
|
2017-01-31 19:50:02 -05:00
|
|
|
(with-selected-window that-window
|
2017-10-07 20:32:48 +02:00
|
|
|
(switch-to-buffer (doom-fallback-buffer)))
|
2017-09-25 13:02:20 +02:00
|
|
|
(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))))
|
2017-01-31 19:50:02 -05:00
|
|
|
|
2017-02-19 18:14:46 -05:00
|
|
|
;;;###autoload
|
2017-06-19 00:30:41 +02:00
|
|
|
(defun +evil/window-move-left () "See `+evil--window-swap'" (interactive) (+evil--window-swap 'left))
|
2017-02-19 18:14:46 -05:00
|
|
|
;;;###autoload
|
2017-06-19 00:30:41 +02:00
|
|
|
(defun +evil/window-move-right () "See `+evil--window-swap'" (interactive) (+evil--window-swap 'right))
|
2017-02-19 18:14:46 -05:00
|
|
|
;;;###autoload
|
2017-06-19 00:30:41 +02:00
|
|
|
(defun +evil/window-move-up () "See `+evil--window-swap'" (interactive) (+evil--window-swap 'up))
|
2017-02-19 18:14:46 -05:00
|
|
|
;;;###autoload
|
2017-06-19 00:30:41 +02:00
|
|
|
(defun +evil/window-move-down () "See `+evil--window-swap'" (interactive) (+evil--window-swap 'down))
|
2017-02-19 18:14:46 -05:00
|
|
|
|
2018-09-07 22:02:41 -04:00
|
|
|
;;;###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)
|
2019-07-12 16:24:01 +02:00
|
|
|
(evilem-default-keybindings (key-description prefix))
|
2019-05-10 02:30:37 -04:00
|
|
|
(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)))))
|
2018-09-07 22:02:41 -04:00
|
|
|
|
2019-04-21 19:59:44 -04:00
|
|
|
;;;###autoload (autoload '+evil:apply-macro "editor/evil/autoload/evil" nil t)
|
2018-03-24 07:24:22 -04:00
|
|
|
(evil-define-operator +evil:apply-macro (beg end)
|
2017-02-03 19:24:04 -05:00
|
|
|
"Apply macro to each line."
|
2018-03-24 07:24:22 -04:00
|
|
|
: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)))
|
2018-10-18 19:41:29 -04:00
|
|
|
(unless macro
|
|
|
|
(user-error "No macro recorded in %c register" register))
|
2018-03-24 07:24:22 -04:00
|
|
|
(evil-change-state 'normal)
|
|
|
|
(evil-with-single-undo
|
2018-10-18 19:41:29 -04:00
|
|
|
(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)))))
|
2017-02-19 18:14:46 -05:00
|
|
|
|
2019-04-21 19:59:44 -04:00
|
|
|
;;;###autoload (autoload '+evil:retab "editor/evil/autoload/evil" nil t)
|
2017-05-15 13:52:22 +02:00
|
|
|
(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))
|
|
|
|
|
2019-04-21 19:59:44 -04:00
|
|
|
;;;###autoload (autoload '+evil:narrow-buffer "editor/evil/autoload/evil" nil t)
|
2018-10-03 11:14:08 -04:00
|
|
|
(evil-define-operator +evil:narrow-buffer (beg end &optional bang)
|
2018-08-27 03:25:49 +02:00
|
|
|
"Wrapper around `doom/clone-and-narrow-buffer'."
|
2017-05-15 13:52:22 +02:00
|
|
|
:move-point nil
|
|
|
|
(interactive "<r><!>")
|
2018-08-27 03:25:49 +02:00
|
|
|
(doom/clone-and-narrow-buffer beg end bang))
|
2017-05-15 13:52:22 +02:00
|
|
|
|
2019-06-17 12:37:19 +02:00
|
|
|
;;;###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)))
|
|
|
|
|
2017-05-15 13:52:22 +02:00
|
|
|
|
2019-03-02 01:56:32 -05:00
|
|
|
;;
|
|
|
|
;;; wgrep
|
2017-05-17 18:24:16 +02:00
|
|
|
|
2019-04-21 19:59:44 -04:00
|
|
|
;;;###autoload (autoload '+evil-delete "editor/evil/autoload/evil" nil t)
|
2017-05-17 18:24:16 +02:00
|
|
|
(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>")
|
2017-06-08 11:47:56 +02:00
|
|
|
(condition-case _ex
|
2017-05-17 18:24:16 +02:00
|
|
|
(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))))
|