From 4f2104d30972dbe891f3e0f3e94d40508dc733b0 Mon Sep 17 00:00:00 2001 From: "Itai Y. Efrat" Date: Wed, 27 Oct 2021 13:11:24 +0300 Subject: [PATCH] docs(lookup): add sqlite3 doctor check if +docsets --- modules/tools/lookup/doctor.el | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 modules/tools/lookup/doctor.el diff --git a/modules/tools/lookup/doctor.el b/modules/tools/lookup/doctor.el new file mode 100644 index 000000000..71e1015bf --- /dev/null +++ b/modules/tools/lookup/doctor.el @@ -0,0 +1,5 @@ +;;; tools/lookup/doctor.el -*- lexical-binding: t; -*- + +(when (featurep! +docsets) + (unless (executable-find "sqlite3") + (warn! "Couldn't find the sqlite3 executable. dash-docs will not work.")))