Variable: editorconfig-lisp-use-default-indent

editorconfig-lisp-use-default-indent is a variable defined in editorconfig.el.gz.

Value

nil

Documentation

Selectively ignore the value of indent_size for Lisp files.

Prevents lisp-indent-offset from being set selectively.

nil - lisp-indent-offset is always set normally.
t - lisp-indent-offset is never set normally
       (always use default indent for lisps).
number - lisp-indent-offset is not set only if indent_size is
         equal to this number. For example, if this is set to 2,
         lisp-indent-offset will not be set only if indent_size is 2.

Source Code

;; Defined in /usr/src/emacs/lisp/editorconfig.el.gz
(defvar editorconfig-lisp-use-default-indent nil
  "Selectively ignore the value of indent_size for Lisp files.
Prevents `lisp-indent-offset' from being set selectively.

nil - `lisp-indent-offset' is always set normally.
t   - `lisp-indent-offset' is never set normally
       (always use default indent for lisps).
number - `lisp-indent-offset' is not set only if indent_size is
         equal to this number.  For example, if this is set to 2,
         `lisp-indent-offset' will not be set only if indent_size is 2.")