From b1de2d172679a1fac77d8ff4fa961cd49f2821c8 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Wed, 25 May 2016 10:47:11 -0400 Subject: [PATCH] [emacs] fix plantuml-mode support Configure plantuml-mode derived mode to be available and load puml-mode on-demand. --- .emacs.d/emacs.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.emacs.d/emacs.org b/.emacs.d/emacs.org index deefd50..0e4ff2e 100644 --- a/.emacs.d/emacs.org +++ b/.emacs.d/emacs.org @@ -422,7 +422,8 @@ org documents and ob-plantuml. (use-package puml-mode :ensure t :mode "\\.plantuml\\'" - :config + :commands puml-mode + :init (define-derived-mode plantuml-mode puml-mode "PlantUML Mode"))