mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
lang/json/doctor: only check for jq if ivy is on
since `counsel-jq` is only relevant for ivy
This commit is contained in:
@ -1,4 +1,5 @@
|
|||||||
;;; lang/json/doctor.el -*- lexical-binding: t; -*-
|
;;; lang/json/doctor.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
(unless (executable-find "jq")
|
(when (and (featurep! :completion ivy)
|
||||||
(warn! "Couldn't find jq. counsel-jq won't work."))
|
(not (executable-find "jq")))
|
||||||
|
(warn! "Couldn't find jq. counsel-jq won't work." ))
|
||||||
|
Reference in New Issue
Block a user