doomemacs/modules/lang/emacs-lisp
Nikita Bloshchanevich b12df73cc1 Emacs-lisp eldoc: fix error if symbol unbound
`+emacs-lisp-append-value-to-eldoc-a' `error's if the symbol isn't
bound, because `symbol-value' errors in that case. Fix that bug by only
modifying the result of `elisp-get-var-docstring' if the symbol is
bound.
2021-01-04 12:08:53 +01:00
..
autoload.el Workaround: fix goto definition on modules 2020-12-12 13:21:26 +01:00
config.el Emacs-lisp eldoc: fix error if symbol unbound 2021-01-04 12:08:53 +01:00
packages.el Bump :lang 2020-12-05 16:37:59 -05:00
README.org Minor refactors & revision across the board 2020-07-31 01:39:24 -04:00

lang/emacs-lisp

Description

This module extends support for Emacs Lisp in Doom Emacs.

  • Macro expansion
  • Go-to-definitions or references functionality

Maintainers

  • @hlissner (author)

Module Flags

This module provides no flags.

Hacks

  • Symbols that are defined in the current session are highlighted with font-lock-variable-face.
  • Eldoc will display the values of variables next to its documentation.
  • elisp-demos was modified to display API demos for Doom's standard library (in docs/api.org).
  • This module extends imenu support for Doom's API (e.g. package!, use-package, after!)
  • Flycheck has been configured to tone down the false positives when you are editing your Emacs or Doom config.

Prerequisites

This module's sole dependency is Emacs. It's very obscure, you wouldn't know about it.

TODO Features

TODO Configuration

TODO Troubleshooting