doomemacs/modules/lang/json/doctor.el
Itai Y. Efrat 5c54ae1329 lang/json/doctor: only check for jq if ivy is on
since `counsel-jq` is only relevant for ivy
2021-06-09 15:23:58 +03:00

5 lines
188 B
EmacsLisp

;;; lang/json/doctor.el -*- lexical-binding: t; -*-
(when (and (featurep! :completion ivy)
(not (executable-find "jq")))
(warn! "Couldn't find jq. counsel-jq won't work." ))