From 71c2932786a79877e7037512eb2a9d5acbe685a1 Mon Sep 17 00:00:00 2001 From: Edmund Miller Date: Mon, 1 Jun 2020 16:13:30 -0500 Subject: [PATCH] Use :when instead of (when ...) --- modules/lang/json/config.el | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/modules/lang/json/config.el b/modules/lang/json/config.el index 56aacfddd..627e76051 100644 --- a/modules/lang/json/config.el +++ b/modules/lang/json/config.el @@ -15,11 +15,11 @@ -(when (featurep! :completion ivy) - (use-package! counsel-jq - :defer t - :init - (map! :after json-mode - :map json-mode-map - :localleader - "s" #'counsel-jq))) +(use-package! counsel-jq + :when (featurep! :completion ivy) + :defer t + :init + (map! :after json-mode + :map json-mode-map + :localleader + "s" #'counsel-jq))