Variable: editorconfig-get-local-variables-functions

editorconfig-get-local-variables-functions is a variable defined in editorconfig.el.gz.

Value

(editorconfig--get-indentation
 editorconfig--get-trailing-nl
 editorconfig--get-trailing-ws
 editorconfig--get-line-length)

Documentation

Special hook run to convert EditorConfig settings to their Emacs equivalent.

Every function is called with one argument, a hash-table indexed by EditorConfig settings represented as symbols and whose corresponding value is represented as a string. It should return a list of (VAR . VAL) settings where VAR is a Lisp variable and VAL is the value to which it should be set.

Source Code

;; Defined in /usr/src/emacs/lisp/editorconfig.el.gz
(defvar editorconfig-get-local-variables-functions
  '(editorconfig--get-indentation
    editorconfig--get-trailing-nl
    editorconfig--get-trailing-ws
    editorconfig--get-line-length)
  "Special hook run to convert EditorConfig settings to their Emacs equivalent.
Every function is called with one argument, a hash-table indexed by
EditorConfig settings represented as symbols and whose corresponding value
is represented as a string.  It should return a list of (VAR . VAL) settings
where VAR is a Lisp variable and VAL is the value to which it should be set.")