mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
fix(file-templates): invalid function call
`evil-initialize-state` recently changed to no longer accept any arguments, so use `evil-change-state` instead. Ref: emacs-evil/evil@1c4c3bfff8
This commit is contained in:
@ -81,7 +81,7 @@ evil is loaded and enabled)."
|
||||
(and yas--active-field-overlay
|
||||
(overlay-buffer yas--active-field-overlay)
|
||||
(overlay-get yas--active-field-overlay 'yas--field)))
|
||||
(evil-initialize-state 'insert))))))
|
||||
(evil-change-state 'insert))))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +file-templates-get-short-path ()
|
||||
|
Reference in New Issue
Block a user