没有plantuml mode

挺奇怪,我下载了plantuml.jar,安装了jdk,org babel load language 也设置了plantuml 为 t 有人知道为什么的么?

搞笑的是,我居然可以C-c C-c执行这个src block,但是无法进入src edit 模式

那是因为默认主模式是 plantuml-mode 但是并没有这个模式,所以你无法打开编辑,你把默认主模式改为 fundamental-mode 就好了

1 个赞

你可以安装 plantuml-mode 然后设置

(add-to-list 'auto-mode-alist '("\\.puml\\'" . plantuml-mode))
(add-to-list 'auto-mode-alist '("\\.plantuml\\'" . plantuml-mode))
(setq plantuml-jar-path "~/.custom/plantuml.jar")
(add-to-list 'org-src-lang-modes '("plantuml" . plantuml))
(setq org-plantuml-jar-path
      (expand-file-name "~/.custom/plantuml.jar"))

顺便感谢一下,很久没用plantuml-mode了,之前它是puml-mode,现在已经废弃了

1 个赞

things solved, tks