PythonNut/evil-easymotion@79c13ed -> PythonNut/evil-easymotion@f96c2ed
abo-abo/lispy@c7e282a -> abo-abo/lispy@cdaa9c7
clemera/objed@8dc1770 -> clemera/objed@e89d8da
emacs-evil/evil-collection@493d523 -> emacs-evil/evil-collection@ba36304
emacs-evil/evil@8aa6337 -> emacs-evil/evil@d243eae
hlissner/doom-snippets@feaedeb -> hlissner/doom-snippets@422f683
hlissner/evil-snipe@3ec8adf -> hlissner/evil-snipe@2ba6353
joaotavora/yasnippet@ac03c2f -> joaotavora/yasnippet@5b1217a
mrkkrp/vimish-fold@d3248a4 -> mrkkrp/vimish-fold@6368523
redguardtoo/evil-nerd-commenter@747e346 -> redguardtoo/evil-nerd-commenter@1bd2de5
We're also transitioning from abbreviated SHA1 hashes to full ones. See
45cdfb125
for why.
14 lines
617 B
EmacsLisp
14 lines
617 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; editor/parinfer/packages.el
|
|
|
|
(when (featurep! :editor evil)
|
|
;; Parinfer uses `evil-define-key' without loading evil, so if evil is
|
|
;; installed *after* parinfer, parinfer will throw up void-function errors.
|
|
;; because evil-define-key (a macro) wasn't expanded at compile-time. So we
|
|
;; make sure evil is installed before parinfer...
|
|
(package! evil)
|
|
;; ...and that it can see `evil-define-key' if evil was installed in a
|
|
;; separate session:
|
|
(autoload 'evil-define-key "evil-core" nil nil 'macro))
|
|
|
|
(package! parinfer :pin "eaad857ae4351f72a561ee3dec8943713510003f")
|