2020-05-28 10:10:44 -05:00
|
|
|
;;; lang/json/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
|
2021-06-09 13:42:26 +03:00
|
|
|
(when (and (featurep! :completion ivy)
|
|
|
|
(not (executable-find "jq")))
|
|
|
|
(warn! "Couldn't find jq. counsel-jq won't work." ))
|
2021-10-19 19:26:26 +01:00
|
|
|
|
|
|
|
(assert! (or (not (featurep! +tree-sitter))
|
|
|
|
(featurep! :tools tree-sitter))
|
|
|
|
"This module requires (:tools tree-sitter)")
|