654 lines
26 KiB
EmacsLisp
654 lines
26 KiB
EmacsLisp
;;; core/autoload/help.el -*- lexical-binding: t; -*-
|
|
|
|
(defvar doom--help-major-mode-module-alist
|
|
'((dockerfile-mode :tools docker)
|
|
(agda2-mode :lang agda)
|
|
(haxor-mode :lang assembly)
|
|
(mips-mode :lang assembly)
|
|
(nasm-mode :lang assembly)
|
|
(c-mode :lang cc)
|
|
(c++-mode :lang cc)
|
|
(objc++-mode :lang cc)
|
|
(crystal-mode :lang crystal)
|
|
(lisp-mode :lang common-lisp)
|
|
(csharp-mode :lang csharp)
|
|
(clojure-mode :lang clojure)
|
|
(graphql-mode :lang data)
|
|
(toml-mode :lang data)
|
|
(json-mode :lang data)
|
|
(yaml-mode :lang data)
|
|
(csv-mode :lang data)
|
|
(dhall-mode :lang data)
|
|
(erlang-mode :lang erlang)
|
|
(elixir-mode :lang elixir)
|
|
(elm-mode :lang elm)
|
|
(emacs-lisp-mode :lang emacs-lisp)
|
|
(ess-r-mode :lang ess)
|
|
(ess-julia-mode :lang ess)
|
|
(go-mode :lang go)
|
|
(haskell-mode :lang haskell)
|
|
(hy-mode :lang hy)
|
|
(idris-mode :lang idris)
|
|
(java-mode :lang java)
|
|
(js2-mode :lang javascript)
|
|
(rjsx-mode :lang javascript)
|
|
(typescript-mode :lang javascript)
|
|
(coffee-mode :lang javascript)
|
|
(julia-mode :lang julia)
|
|
(kotlin-mode :lang kotlin)
|
|
(latex-mode :lang latex)
|
|
(LaTeX-mode :lang latex)
|
|
(ledger-mode :lang ledger)
|
|
(lua-mode :lang lua)
|
|
(markdown-mode :lang markdown)
|
|
(gfm-mode :lang markdown)
|
|
(nim-mode :lang nim)
|
|
(nix-mode :lang nix)
|
|
(taureg-mode :lang ocaml)
|
|
(org-mode :lang org)
|
|
(perl-mode :lang perl)
|
|
(php-mode :lang php)
|
|
(hack-mode :lang php)
|
|
(plantuml-mode :lang plantuml)
|
|
(purescript-mode :lang purescript)
|
|
(python-mode :lang python)
|
|
(restclient-mode :lang rest)
|
|
(ruby-mode :lang ruby)
|
|
(enh-ruby-mode :lang ruby)
|
|
(rust-mode :lang rust)
|
|
(scala-mode :lang scala)
|
|
(sh-mode :lang sh)
|
|
(swift-mode :lang swift)
|
|
(web-mode :lang web)
|
|
(css-mode :lang web)
|
|
(scss-mode :lang web)
|
|
(sass-mode :lang web)
|
|
(less-css-mode :lang web)
|
|
(stylus-mode :lang web)
|
|
(terra-mode :lang terra))
|
|
"An alist mapping major modes to Doom modules.
|
|
|
|
This is used by `doom/help-modules' to auto-select the module corresponding to
|
|
the current major-modea.")
|
|
|
|
|
|
;;
|
|
;;; Helpers
|
|
|
|
;;;###autoload
|
|
(defun doom-active-minor-modes ()
|
|
"Return a list of active minor-mode symbols."
|
|
(cl-loop for mode in minor-mode-list
|
|
if (and (boundp mode) (symbol-value mode))
|
|
collect mode))
|
|
|
|
|
|
;;
|
|
;;; Custom describe commands
|
|
|
|
;;;###autoload (defalias 'doom/describe-autodefs #'doom/help-autodefs)
|
|
;;;###autoload (defalias 'doom/describe-module #'doom/help-modules)
|
|
;;;###autoload (defalias 'doom/describe-package #'doom/help-packages)
|
|
|
|
;;;###autoload
|
|
(defun doom/describe-active-minor-mode (mode)
|
|
"Get information on an active minor mode. Use `describe-minor-mode' for a
|
|
selection of all minor-modes, active or not."
|
|
(interactive
|
|
(list (completing-read "Minor mode: " (doom-active-minor-modes))))
|
|
(let ((symbol
|
|
(cond ((stringp mode) (intern mode))
|
|
((symbolp mode) mode)
|
|
((error "Expected a symbol/string, got a %s" (type-of mode))))))
|
|
(if (fboundp symbol)
|
|
(helpful-function symbol)
|
|
(helpful-variable symbol))))
|
|
|
|
;;;###autoload
|
|
(defun doom/describe-symbol (symbol)
|
|
"Show help for SYMBOL, a variable, function or macro."
|
|
(interactive
|
|
(list (helpful--read-symbol "Symbol: " #'helpful--bound-p)))
|
|
(let* ((sym (intern-soft symbol))
|
|
(bound (boundp sym))
|
|
(fbound (fboundp sym)))
|
|
(cond ((and sym bound (not fbound))
|
|
(helpful-variable sym))
|
|
((and sym fbound (not bound))
|
|
(helpful-callable sym))
|
|
((apropos (format "^%s\$" symbol)))
|
|
((apropos (format "%s" symbol))))))
|
|
|
|
|
|
;;
|
|
;;; Documentation commands
|
|
|
|
(defvar org-agenda-files)
|
|
(defun doom--org-headings (files &optional depth include-files)
|
|
"TODO"
|
|
(require 'org)
|
|
(let* ((default-directory doom-docs-dir)
|
|
(org-agenda-files (mapcar #'expand-file-name (doom-enlist files)))
|
|
(depth (if (integerp depth) depth)))
|
|
(message "Loading search results...")
|
|
(unwind-protect
|
|
(delq nil
|
|
(org-map-entries
|
|
(lambda ()
|
|
(cl-destructuring-bind (level _reduced-level _todo _priority text tags)
|
|
(org-heading-components)
|
|
(let ((path (org-get-outline-path)))
|
|
(when (and (or (null depth)
|
|
(<= level depth))
|
|
(or (null tags)
|
|
(not (string-match-p ":TOC" tags))))
|
|
(propertize
|
|
(mapconcat
|
|
'identity
|
|
(list (mapconcat #'identity
|
|
(append (when include-files
|
|
(list (or (+org-get-global-property "TITLE")
|
|
(file-relative-name buffer-file-name))))
|
|
path
|
|
(list (replace-regexp-in-string org-link-any-re "\\4" text)))
|
|
" > ")
|
|
tags)
|
|
" ")
|
|
'location (cons buffer-file-name (point)))))))
|
|
t 'agenda))
|
|
(mapc #'kill-buffer org-agenda-new-buffers)
|
|
(setq org-agenda-new-buffers nil))))
|
|
|
|
(defvar ivy-sort-functions-alist)
|
|
;;;###autoload
|
|
(defun doom-completing-read-org-headings (prompt files &optional depth include-files initial-input extra-candidates)
|
|
"TODO"
|
|
(let (ivy-sort-functions-alist)
|
|
(if-let* ((result (completing-read
|
|
prompt
|
|
(append (doom--org-headings files depth include-files)
|
|
extra-candidates)
|
|
nil nil initial-input)))
|
|
(cl-destructuring-bind (file . location)
|
|
(get-text-property 0 'location result)
|
|
(find-file file)
|
|
(when location
|
|
(goto-char location)))
|
|
(user-error "Aborted"))))
|
|
|
|
;;;###autoload
|
|
(defun doom/homepage ()
|
|
"Open the doom emacs homepage in the browser."
|
|
(interactive)
|
|
(browse-url "https://doomemacs.org"))
|
|
|
|
;;;###autoload
|
|
(defun doom/help ()
|
|
"Open Doom's user manual."
|
|
(interactive)
|
|
(find-file (expand-file-name "index.org" doom-docs-dir)))
|
|
|
|
;;;###autoload
|
|
(defun doom/help-search (&optional initial-input)
|
|
"Search Doom's documentation and jump to a headline."
|
|
(interactive)
|
|
(doom-completing-read-org-headings
|
|
"Find in Doom help: "
|
|
(list "getting_started.org"
|
|
"contributing.org"
|
|
"troubleshooting.org"
|
|
"tutorials.org"
|
|
"faq.org")
|
|
2 t initial-input
|
|
(mapcar (lambda (x)
|
|
(propertize (concat "Doom Modules > " x)
|
|
'location
|
|
(get-text-property (1- (length x)) 'location x)))
|
|
(doom--help-modules-list))))
|
|
|
|
;;;###autoload
|
|
(defun doom/help-news-search (&optional initial-input)
|
|
"Search headlines in Doom's newsletters."
|
|
(interactive)
|
|
(doom-completing-read-org-headings
|
|
"Find in News: "
|
|
(nreverse (doom-files-in (expand-file-name "news" doom-docs-dir)
|
|
:match "/[0-9]"
|
|
:relative-to doom-docs-dir))
|
|
nil t initial-input))
|
|
|
|
;;;###autoload
|
|
(defun doom/help-faq (&optional initial-input)
|
|
"Search Doom's FAQ and jump to a question."
|
|
(interactive)
|
|
(doom-completing-read-org-headings
|
|
"Find in FAQ: " (list "faq.org")
|
|
2 nil initial-input))
|
|
|
|
;;;###autoload
|
|
(defun doom/help-news ()
|
|
"Open a Doom newsletter.
|
|
The latest newsletter will be selected by default."
|
|
(interactive)
|
|
(let* ((default-directory (expand-file-name "news/" doom-docs-dir))
|
|
(news-files (doom-files-in default-directory)))
|
|
(find-file
|
|
(read-file-name (format "Open Doom newsletter (current: v%s): "
|
|
doom-version)
|
|
default-directory
|
|
(if (member doom-version news-files)
|
|
doom-version
|
|
(concat (mapconcat #'number-to-string
|
|
(nbutlast (version-to-list doom-version) 1)
|
|
".")
|
|
".x"))
|
|
t doom-version))))
|
|
|
|
;;;###autoload
|
|
(defun doom/help-autodefs (autodef)
|
|
"Open documentation for an autodef.
|
|
|
|
An autodef is a Doom concept. It is a function or macro that is always defined,
|
|
whether or not its containing module is disabled (in which case it will safely
|
|
no-op without evaluating its arguments). This syntactic sugar lets you use them
|
|
without needing to check if they are available."
|
|
(interactive
|
|
(let* ((settings
|
|
(cl-loop with case-fold-search = nil
|
|
for sym being the symbols of obarray
|
|
for sym-name = (symbol-name sym)
|
|
if (and (or (functionp sym)
|
|
(macrop sym))
|
|
(string-match-p "[a-z]!$" sym-name))
|
|
collect sym))
|
|
(sym (symbol-at-point))
|
|
(autodef
|
|
(completing-read
|
|
"Describe setter: "
|
|
;; TODO Could be cleaner (refactor me!)
|
|
(cl-loop with maxwidth = (apply #'max (mapcar #'length (mapcar #'symbol-name settings)))
|
|
for def in (sort settings #'string-lessp)
|
|
if (get def 'doom-module)
|
|
collect
|
|
(format (format "%%-%ds%%s" (+ maxwidth 4))
|
|
def (propertize (format "%s %s" (car it) (cdr it))
|
|
'face 'font-lock-comment-face))
|
|
else if (and (string-match-p "^set-.+!$" (symbol-name def))
|
|
(symbol-file def)
|
|
(file-in-directory-p (symbol-file def) doom-core-dir))
|
|
collect
|
|
(format (format "%%-%ds%%s" (+ maxwidth 4))
|
|
def (propertize (format "core/%s.el" (file-name-sans-extension (file-relative-name (symbol-file def) doom-core-dir)))
|
|
'face 'font-lock-comment-face)))
|
|
nil t
|
|
(when (and (symbolp sym)
|
|
(string-match-p "!$" (symbol-name sym)))
|
|
(symbol-name sym)))))
|
|
(list (and autodef (car (split-string autodef " "))))))
|
|
(or (stringp autodef)
|
|
(functionp autodef)
|
|
(signal 'wrong-type-argument (list '(stringp functionp) autodef)))
|
|
(let ((fn (if (functionp autodef)
|
|
autodef
|
|
(intern-soft autodef))))
|
|
(or (fboundp fn)
|
|
(error "'%s' is not a valid DOOM autodef" autodef))
|
|
(if (fboundp 'helpful-callable)
|
|
(helpful-callable fn)
|
|
(describe-function fn))))
|
|
|
|
(defun doom--help-modules-list ()
|
|
(cl-loop for path in (doom-module-load-path 'all)
|
|
for (cat . mod) = (doom-module-from-path path)
|
|
for location = (cons (or (doom-module-locate-path cat mod "README.org")
|
|
(doom-module-locate-path cat mod))
|
|
nil)
|
|
for format = (propertize (format "%s %s" cat mod)
|
|
'location location)
|
|
if (doom-module-p cat mod)
|
|
collect format
|
|
else if (and cat mod)
|
|
collect
|
|
(propertize
|
|
format
|
|
'face 'font-lock-comment-face
|
|
'location location)))
|
|
|
|
(defun doom--help-current-module-str ()
|
|
(cond ((and buffer-file-name
|
|
(eq major-mode 'emacs-lisp-mode)
|
|
(file-in-directory-p buffer-file-name doom-private-dir)
|
|
(save-excursion (goto-char (point-min))
|
|
(re-search-forward "^\\s-*(doom! " nil t))
|
|
(thing-at-point 'sexp t)))
|
|
((save-excursion
|
|
(require 'smartparens)
|
|
(ignore-errors
|
|
(sp-beginning-of-sexp)
|
|
(unless (eq (char-after) ?\()
|
|
(backward-char))
|
|
(let ((sexp (sexp-at-point)))
|
|
(when (memq (car-safe sexp) '(featurep! require!))
|
|
(format "%s %s" (nth 1 sexp) (nth 2 sexp)))))))
|
|
((and buffer-file-name
|
|
(when-let (mod (doom-module-from-path buffer-file-name))
|
|
(format "%s %s" (car mod) (cdr mod)))))
|
|
((when-let (mod (cdr (assq major-mode doom--help-major-mode-module-alist)))
|
|
(format "%s %s"
|
|
(symbol-name (car mod))
|
|
(symbol-name (cadr mod)))))))
|
|
|
|
;;;###autoload
|
|
(defun doom/help-modules (category module)
|
|
"Open the documentation for a Doom module.
|
|
|
|
CATEGORY is a keyword and MODULE is a symbol. e.g. :editor and 'evil.
|
|
|
|
Automatically selects a) the module at point (in private init files), b) the
|
|
module derived from a `featurep!' or `require!' call, c) the module that the
|
|
current file is in, or d) the module associated with the current major mode (see
|
|
`doom--help-major-mode-module-alist')."
|
|
(interactive
|
|
(let* ((module-string
|
|
(completing-read "Describe module: "
|
|
(doom--help-modules-list)
|
|
nil t nil nil
|
|
(doom--help-current-module-str)))
|
|
(key (doom-module-from-path
|
|
(car (get-text-property 0 'location module-string)))))
|
|
(list (car key)
|
|
(cdr key))))
|
|
(cl-check-type category symbol)
|
|
(cl-check-type module symbol)
|
|
(let ((path (doom-module-locate-path category module)))
|
|
(unless (file-readable-p path)
|
|
(error "'%s %s' isn't a valid module; it doesn't exist" category module))
|
|
(if-let* ((readme-path (doom-module-locate-path category module "README.org")))
|
|
(find-file readme-path)
|
|
(if (y-or-n-p (format "The '%s %s' module has no README file. Explore its directory?"
|
|
category module))
|
|
(doom-project-browse path)
|
|
(user-error "Aborted module lookup")))))
|
|
|
|
|
|
;;
|
|
;;; `doom/help-packages'
|
|
|
|
(defun doom--help-package-insert-button (label path &optional regexp)
|
|
(declare (indent defun))
|
|
(insert-text-button
|
|
(string-trim label)
|
|
'face 'link
|
|
'follow-link t
|
|
'action
|
|
`(lambda (_)
|
|
(unless (file-exists-p ,path)
|
|
(user-error "Module doesn't exist"))
|
|
(when (window-dedicated-p)
|
|
(other-window 1))
|
|
(let ((buffer (find-file ,path)))
|
|
(when ,(stringp regexp)
|
|
(with-current-buffer buffer
|
|
(goto-char (point-min))
|
|
(if (re-search-forward ,regexp nil t)
|
|
(recenter)
|
|
(message "Couldn't find the config block"))))))))
|
|
|
|
(defun doom--help-package-configs (package)
|
|
;; TODO Add git checks, in case ~/.emacs.d isn't a git repo
|
|
(let ((default-directory doom-emacs-dir))
|
|
(split-string
|
|
(shell-command-to-string
|
|
(format "git grep --no-break --no-heading --line-number '%s %s\\($\\| \\)'"
|
|
"\\(^;;;###package\\|(after!\\|(use-package!\\)"
|
|
package))
|
|
"\n" t)))
|
|
|
|
;;;###autoload
|
|
(defun doom/help-packages (package)
|
|
"Like `describe-package', but for packages installed by Doom modules.
|
|
|
|
Only shows installed packages. Includes information about where packages are
|
|
defined and configured.
|
|
|
|
If prefix arg is present, refresh the cache."
|
|
(interactive
|
|
(let ((guess (or (function-called-at-point)
|
|
(symbol-at-point))))
|
|
(require 'finder-inf nil t)
|
|
(require 'core-packages)
|
|
(doom-initialize-packages)
|
|
(let ((packages (delete-dups
|
|
(append (mapcar #'car package-alist)
|
|
(mapcar #'car package--builtins)
|
|
(mapcar #'intern (hash-table-keys straight--build-cache))
|
|
(mapcar #'car (doom-package-list 'all))
|
|
nil))))
|
|
(unless (memq guess packages)
|
|
(setq guess nil))
|
|
(list
|
|
(intern
|
|
(completing-read (if guess
|
|
(format "Select package to search for (default %s): "
|
|
guess)
|
|
"Describe package: ")
|
|
packages nil t nil nil
|
|
(if guess (symbol-name guess))))))))
|
|
(require 'core-packages)
|
|
(doom-initialize-packages)
|
|
(if (or (package-desc-p package)
|
|
(and (symbolp package)
|
|
(or (assq package package-alist)
|
|
(assq package package--builtins))))
|
|
(describe-package package)
|
|
(help-setup-xref (list #'doom/help-packages package)
|
|
(called-interactively-p 'interactive))
|
|
(with-help-window (help-buffer)))
|
|
(save-excursion
|
|
(with-current-buffer (help-buffer)
|
|
(let ((inhibit-read-only t)
|
|
(indent (make-string 13 ? )))
|
|
(goto-char (point-max))
|
|
(if (re-search-forward "^ *Status: " nil t)
|
|
(progn
|
|
(end-of-line)
|
|
(insert "\n"))
|
|
(search-forward "\n\n" nil t))
|
|
|
|
(package--print-help-section "Package")
|
|
(insert (symbol-name package) "\n")
|
|
|
|
(package--print-help-section "Source")
|
|
(insert (or (pcase (doom-package-backend package)
|
|
(`straight
|
|
(format! "Straight (%s)\n%s"
|
|
(let ((default-directory (straight--build-dir (symbol-name package))))
|
|
(string-trim
|
|
(shell-command-to-string "git log -1 --format=\"%D %h %ci\"")))
|
|
(indent
|
|
13 (string-trim
|
|
(pp-to-string
|
|
(doom-package-build-recipe package))))))
|
|
(`elpa
|
|
(format "[M]ELPA %s" (doom--package-url package)))
|
|
(`builtin "Built-in")
|
|
(_ (abbreviate-file-name (symbol-file package))))
|
|
"unknown")
|
|
"\n")
|
|
|
|
(when (gethash (symbol-name package) straight--build-cache)
|
|
(package--print-help-section "Modules")
|
|
(insert "Declared by the following Doom modules:\n")
|
|
(dolist (m (doom-package-get package :modules))
|
|
(insert indent)
|
|
(doom--help-package-insert-button
|
|
(format "%s %s" (car m) (or (cdr m) ""))
|
|
(pcase (car m)
|
|
(:core doom-core-dir)
|
|
(:private doom-private-dir)
|
|
(category (doom-module-path category (cdr m)))))
|
|
(insert "\n")))
|
|
|
|
(package--print-help-section "Configs")
|
|
(insert "This package is configured in the following locations:")
|
|
(dolist (location (doom--help-package-configs package))
|
|
(insert "\n" indent)
|
|
(insert-text-button
|
|
location
|
|
'face 'link
|
|
'follow-link t
|
|
'action
|
|
`(lambda (_)
|
|
(cl-destructuring-bind (file line _match)
|
|
,(split-string location ":")
|
|
(find-file (expand-file-name file doom-emacs-dir))
|
|
(goto-char (point-min))
|
|
(forward-line (1- line))
|
|
(recenter)))))
|
|
|
|
(insert "\n\n")))))
|
|
|
|
(defvar doom--package-cache nil)
|
|
(defun doom--package-list ()
|
|
(let* ((guess (or (function-called-at-point)
|
|
(symbol-at-point))))
|
|
(require 'finder-inf nil t)
|
|
(unless package--initialized
|
|
(package-initialize t))
|
|
(let ((packages (or doom--package-cache
|
|
(progn
|
|
(message "Reading packages...")
|
|
(cl-delete-duplicates
|
|
(append (mapcar 'car package-alist)
|
|
(mapcar 'car package--builtins)
|
|
(mapcar 'car package-archive-contents)))))))
|
|
(setq doom--package-cache packages)
|
|
(unless (memq guess packages)
|
|
(setq guess nil))
|
|
(intern (completing-read (if guess
|
|
(format "Select package to search for (default %s): "
|
|
guess)
|
|
"Describe package: ")
|
|
packages nil t nil nil
|
|
(if guess (symbol-name guess)))))))
|
|
|
|
(defun doom--package-url (package)
|
|
(cond ((assq package package--builtins)
|
|
(user-error "Package is built into Emacs and cannot be looked up"))
|
|
((when-let (location (locate-library (symbol-name package)))
|
|
(with-temp-buffer
|
|
(insert-file-contents (concat (file-name-sans-extension location) ".el")
|
|
nil 0 4096)
|
|
(let ((case-fold-search t))
|
|
(when (re-search-forward " \\(?:URL\\|homepage\\|Website\\): \\(http[^\n]+\\)\n" nil t)
|
|
(match-string-no-properties 1))))))
|
|
((and (ignore-errors (eq (doom-package-backend package) 'quelpa))
|
|
(let* ((plist (cdr (doom-package-prop package :recipe)))
|
|
(fetcher (plist-get plist :fetcher)))
|
|
(pcase fetcher
|
|
(`git (plist-get plist :url))
|
|
(`github (format "https://github.com/%s.git" (plist-get plist :repo)))
|
|
(`gitlab (format "https://gitlab.com/%s.git" (plist-get plist :repo)))
|
|
(`bitbucket (format "https://bitbucket.com/%s" (plist-get plist :repo)))
|
|
(`wiki (format "https://www.emacswiki.org/emacs/download/%s"
|
|
(or (car-safe (doom-enlist (plist-get plist :files)))
|
|
(format "%s.el" package))))
|
|
(_ (plist-get plist :url))))))
|
|
((and (require 'package nil t)
|
|
(or package-archive-contents (doom-refresh-packages-maybe))
|
|
(pcase (package-desc-archive (cadr (assq package package-archive-contents)))
|
|
("org" "https://orgmode.org")
|
|
((or "melpa" "melpa-mirror")
|
|
(format "https://melpa.org/#/%s" package))
|
|
("gnu"
|
|
(format "https://elpa.gnu.org/packages/%s.html" package))
|
|
(archive
|
|
(if-let (src (cdr (assoc package package-archives)))
|
|
(format "%s" src)
|
|
(user-error "%S isn't installed through any known source (%s)"
|
|
package archive))))))
|
|
((user-error "Cannot find the homepage for %S" package))))
|
|
|
|
;;;###autoload
|
|
(defun doom/help-package-config (package)
|
|
"Jump to any `use-package!', `after!' or ;;;###package block for PACKAGE.
|
|
|
|
This only searches `doom-emacs-dir' (typically ~/.emacs.d) and does not include
|
|
config blocks in your private config."
|
|
(interactive (list (doom--package-list)))
|
|
(cl-destructuring-bind (file line _match)
|
|
(split-string
|
|
(completing-read
|
|
"Jump to config: "
|
|
(or (doom--help-package-configs package)
|
|
(user-error "This package isn't configured by you or Doom")))
|
|
":")
|
|
(find-file (expand-file-name file doom-emacs-dir))
|
|
(goto-char (point-min))
|
|
(forward-line (1- line))
|
|
(recenter)))
|
|
|
|
;;;###autoload
|
|
(defun doom/help-package-homepage (package)
|
|
"Open PACKAGE's repo or homepage in your browser."
|
|
(interactive (list (doom--package-list)))
|
|
(browse-url (doom--package-url package)))
|
|
|
|
;;;###autoload
|
|
(defun doom/help-search-load-path (query)
|
|
"Perform a text search on your `load-path'.
|
|
Uses the symbol at point or the current selection, if available."
|
|
(interactive
|
|
(let ((query
|
|
;; TODO Generalize this later; into something the lookup module and
|
|
;; project search commands could as well
|
|
(if (use-region-p)
|
|
(buffer-substring-no-properties (region-beginning) (region-end))
|
|
(or (symbol-name (symbol-at-point)) ""))))
|
|
(list (read-string
|
|
(format "Search load-path (default: %s): " query)
|
|
nil 'git-grep query))))
|
|
;; REVIEW Replace with deadgrep or ivy/helm interface when we drop ag/git-grep
|
|
;; support later
|
|
(grep-find
|
|
(mapconcat
|
|
#'shell-quote-argument
|
|
(cond ((executable-find "rg")
|
|
`("rg" "--search-zip" "--no-heading" "--color=never"
|
|
,query ,@(cl-remove-if-not #'file-directory-p load-path)))
|
|
((executable-find "ag")
|
|
`("ag" "--search-zip" "--nogroup" "--nocolor"
|
|
,query ,@(cl-remove-if-not #'file-directory-p load-path)))
|
|
((user-error "This command requires ripgrep or the_silver_searcher to be installed on your system")))
|
|
" ")))
|
|
|
|
;; TODO factor our the duplicate code between this and the above
|
|
;;;autoload
|
|
(defun doom/help-search-loaded-files (query)
|
|
"Perform a text search on your `load-path'.
|
|
Uses the symbol at point or the current selection, if available."
|
|
(interactive
|
|
(let ((query
|
|
;; TODO Generalize this later; into something the lookup module and
|
|
;; project search commands could as well.
|
|
(if (use-region-p)
|
|
(buffer-substring-no-properties (region-beginning) (region-end))
|
|
(or (symbol-name (symbol-at-point)) ""))))
|
|
(list (read-string
|
|
(format "Search load-path (default: %s): " query)
|
|
nil 'git-grep query))))
|
|
(require 'elisp-refs)
|
|
;; REVIEW Replace with deadgrep or ivy/helm interface when we drop ag/git-grep
|
|
;; support later
|
|
(grep-find
|
|
(mapconcat
|
|
#'shell-quote-argument
|
|
(let ((search (elisp-refs--loaded-paths)))
|
|
(cond ((executable-find "rg")
|
|
`("rg" "--search-zip" "--no-heading" "--color=never"
|
|
,query ,@(cl-remove-if-not #'file-directory-p search)))
|
|
((executable-find "ag")
|
|
`("ag" "--search-zip" "--nogroup" "--nocolor"
|
|
,query ,@(cl-remove-if-not #'file-directory-p search)))
|
|
((user-error "This command requires ripgrep or the_silver_searcher to be installed on your system"))))
|
|
" ")))
|