summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2022-04-08 01:32:00 +0200
committerMaciej Barć <xgqt@gentoo.org>2022-04-08 01:32:32 +0200
commit6113892094e88820c9c32925b46df4891e8f4e2b (patch)
tree6fcadb5a238cf687b694d1a570a50d957061dd96 /app-emacs/editorconfig-emacs/files
parentwww-client/chromium: Stabilize 100.0.4896.75 amd64, #836842 (diff)
downloadgentoo-6113892094e88820c9c32925b46df4891e8f4e2b.tar.gz
gentoo-6113892094e88820c9c32925b46df4891e8f4e2b.tar.bz2
gentoo-6113892094e88820c9c32925b46df4891e8f4e2b.zip
app-emacs/editorconfig-emacs: also autoload editorconfig-apply
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/editorconfig-emacs/files')
-rw-r--r--app-emacs/editorconfig-emacs/files/50editorconfig-emacs-gentoo.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/app-emacs/editorconfig-emacs/files/50editorconfig-emacs-gentoo.el b/app-emacs/editorconfig-emacs/files/50editorconfig-emacs-gentoo.el
index 93d6816e8e7b..d1f1e86dcd8e 100644
--- a/app-emacs/editorconfig-emacs/files/50editorconfig-emacs-gentoo.el
+++ b/app-emacs/editorconfig-emacs/files/50editorconfig-emacs-gentoo.el
@@ -1,7 +1,9 @@
(add-to-list 'load-path "@SITELISP@")
(autoload 'editorconfig-mode "editorconfig"
"Toggle EditorConfig feature." t)
+(autoload 'editorconfig-apply "editorconfig"
+ "Get and apply EditorConfig properties to current buffer." t)
(autoload 'editorconfig-conf-mode "editorconfig-conf-mode"
"Major mode for editing .editorconfig files." t)
(add-to-list 'auto-mode-alist
- '("/\\.editorconfig\\'" . editorconfig-conf-mode))
+ '("/\\.editorconfig\\'" . editorconfig-conf-mode))