feature/lookup: remove devdocs support (for now)

devdocs-lookup is broken at the moment. devdocs search is still
available through +lookup/online as a provider however. This may be
reversed later, when (and if) we find a better devdocs backend.
This commit is contained in:
Henrik Lissner 2018-08-28 20:48:49 +02:00
parent 5021b0dbb6
commit a57c0fbede
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
7 changed files with 2 additions and 61 deletions

View file

@ -5,11 +5,7 @@
;; + `+lookup/definition': a jump-to-definition that should 'just work'
;; + `+lookup/references': find a symbol's references in the current project
;; + `+lookup/online'; look up a symbol on online resources
;; + `+lookup/docs-at-point'
;; + `+lookup/docs-dash'
;; + `+lookup/docs-dash-at-point'
;; + `+lookup/devdocs'
;; + `+lookup/devdocs-at-point'
;; + `+lookup/in-docsets': look up in Dash docsets
;;
;; This module uses `xref', an experimental new library in Emacs. It may change
;; in the future. When xref can't be depended on it will fall back to
@ -140,18 +136,3 @@ argument: the identifier at point.")
(featurep! :completion ivy))
:commands counsel-dash-install-docset
:config (setq counsel-dash-min-length 2))
;;
;; devdocs.io integration
;;
(when (featurep! +devdocs)
(after! devdocs-lookup
(unless (assoc "SCSS" devdocs-subjects)
(setq devdocs-subjects
(append '(("SCSS" "scss")
("GFM" "markdown")
("Typescript" "typescript"))
devdocs-subjects)))))