DogLooksGood/parinfer-mode@91856b9 -> DogLooksGood/parinfer-mode@8659c99 abo-abo/lispy@5c8a59a -> abo-abo/lispy@38a7df4 emacs-evil/evil-collection@e6824e2 -> emacs-evil/evil-collection@334670e emacsorphanage/god-mode@f51c8f6 -> emacsorphanage/god-mode@02a402b gabesoft/evil-mc@7dfb2ca -> gabesoft/evil-mc@f04fb17 hlissner/doom-snippets@33eb93b -> hlissner/doom-snippets@aa5587b magnars/multiple-cursors.el@83abb05 -> magnars/multiple-cursors.el@a9d7764 noctuid/lispyville@0f13f26 -> noctuid/lispyville@89316f0 redguardtoo/evil-nerd-commenter@563cdc1 -> redguardtoo/evil-nerd-commenter@2730820
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 "8659c99a9475ee34af683fdf8f272728c6bebb3a")
|