Function: editorconfig-mode-apply
editorconfig-mode-apply is an interactive and byte-compiled function
defined in editorconfig-tools.el.gz.
This command is obsolete since 31.1; use editorconfig-apply instead.
Signature
(editorconfig-mode-apply)
Documentation
Get and apply EditorConfig properties to current buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/editorconfig-tools.el.gz
(defun editorconfig-mode-apply ()
"Get and apply EditorConfig properties to current buffer."
(declare (obsolete editorconfig-apply "31.1"))
(interactive)
(when (and major-mode buffer-file-name)
(with-suppressed-warnings ((obsolete editorconfig-apply))
(editorconfig-apply))))