In case I need to call evil-inner-WORD directly

I created an interactive wrapper.
This commit is contained in:
Howard Abrams 2022-06-16 12:16:29 -07:00
parent 5329879253
commit 6689227338

View file

@ -87,6 +87,12 @@ I love packages that add functionality but I dont have to learn anything. How
(add-to-list 'evil-goto-definition-functions 'ha-org-code-block-jump)
#+END_SRC
And in case I need to call it directly:
#+BEGIN_SRC emacs-lisp
(defun ha-goto-definition ()
(interactive)
(evil-inner-WORD))
#+END_SRC
** Clever Parenthesis
We need to make sure we keep the [[https://github.com/Fuco1/smartparens][smartparens]] project always in /strict mode/, because who wants to worry about paren-matching:
#+BEGIN_SRC emacs-lisp