Visual Studio Code 中的 Plantuml // 配置文件
Posted
技术标签:
【中文标题】Visual Studio Code 中的 Plantuml // 配置文件【英文标题】:Plant UML in Visual Studio Code // Config file 【发布时间】:2021-03-19 14:22:25 【问题描述】:我在 VS-Code 中使用 Plant UML 来生成图表:https://marketplace.visualstudio.com/items?itemName=jebbs.plantuml
我想编辑全局默认扩展设置:
为 .puml 文件设置输入文件夹并... 生成的 .png 文件的输出文件夹问题:我在 VS Code 中找不到具有 Export Settings 的 PlantUML 配置文件。我在哪里可以找到它,或者如何正确设置它以与 IDE 一起使用?
【问题讨论】:
【参考方案1】:您可以在项目的根目录中创建一个目录 .vscode,并使用这些设置放置一个名为“settings.json”的文件
"plantuml.commandArgs": [],
"plantuml.diagramsRoot": "../docs/diagrams/src",
"plantuml.exportOutDir": "../docs/diagrams/out"
见: https://marketplace.visualstudio.com/items?itemName=jebbs.plantuml 转到“包含文件搜索逻辑”部分
【讨论】:
非常感谢。我发现在使用 GitHub-Code 空间时,他们默认会这样做。【参考方案2】:在 vscode 上
-
转到文件 --> 首选项 --> 设置
搜索plantuml,您将看到下面的屏幕
更改导出格式
设置输出文件夹,默认为out
如果您不想创建子文件夹,请取消选中该框,选中您是否需要子文件夹
测试
【讨论】:
以上是关于Visual Studio Code 中的 Plantuml // 配置文件的主要内容,如果未能解决你的问题,请参考以下文章
Visual Studio Code 中的 Plantuml // 配置文件
折叠 Visual Studio Code 中的所有方法 [重复]