about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-10-21 16:39:20 +0100
committerDavid Morgan <djm_uk@protonmail.com>2022-10-21 16:39:20 +0100
commit135781d669a2d6cbad7bc8dc99fe0f9a5572b678 (patch)
treedafcc86d88245ca9e28740935adf1c82857228fc
parent5c5f41f2d9f86b567e8cbac4e1e95bc38d7a77ea (diff)
downloaddotfiles-135781d669a2d6cbad7bc8dc99fe0f9a5572b678.tar.gz
Don't treat restclient-jq as a restclient extension
-rw-r--r--.emacs.d/lisp/init-misc.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-misc.el b/.emacs.d/lisp/init-misc.el
index 1442f9a..093c7c3 100644
--- a/.emacs.d/lisp/init-misc.el
+++ b/.emacs.d/lisp/init-misc.el
@@ -18,7 +18,9 @@
 (use-package restclient
   :mode (("\\.http\\'" . restclient-mode)))
 
-(use-extension restclient restclient-jq)
+(use-package restclient-jq
+  :after restclient
+  :demand t)
 
 (use-package es-mode
   :mode "\.es\'")