-
-
Save ninrod/7b6812a61bcb08e6cdb53d02ad6ffaa3 to your computer and use it in GitHub Desktop.
evil-mode god state
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(evil-define-state god | |
"God state." | |
:tag " <G> " | |
:message "-- GOD MODE --" | |
:entry-hook (evil-god-start-hook) | |
:exit-hook (evil-god-stop-hook) | |
:input-method t | |
:intercept-esc nil) | |
(defun evil-god-start-hook () | |
(diminish 'god-local-mode) | |
(god-local-mode 1)) | |
(defun evil-god-stop-hook () | |
(god-local-mode -1) | |
(diminish-undo 'god-local-mode)) | |
(defvar evil-execute-in-god-state-buffer nil) | |
(defun evil-stop-execute-in-god-state () | |
(when (and (not (eq this-command #'evil-execute-in-god-state)) | |
(not (minibufferp))) | |
(remove-hook 'post-command-hook 'evil-stop-execute-in-god-state) | |
(when (buffer-live-p evil-execute-in-god-state-buffer) | |
(with-current-buffer evil-execute-in-god-state-buffer | |
(if (and (eq evil-previous-state 'visual) | |
(not (use-region-p))) | |
(progn | |
(evil-change-to-previous-state) | |
(evil-exit-visual-state)) | |
(evil-change-to-previous-state)))) | |
(setq evil-execute-in-god-state-buffer nil))) | |
(evil-define-command evil-execute-in-god-state () | |
"Execute the next command in God state." | |
(add-hook 'post-command-hook #'evil-stop-execute-in-god-state t) | |
(setq evil-execute-in-god-state-buffer (current-buffer)) | |
(cond | |
((evil-visual-state-p) | |
(let ((mrk (mark)) | |
(pnt (point))) | |
(evil-god-state) | |
(set-mar mrk) | |
(goto-char pnt))) | |
(t | |
(evil-god-state))) | |
(evil-echo "Switched to God state for the next command ...")) | |
(evil-define-key 'normal global-map "," 'evil-execute-in-god-state) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment