vim-slumlord
vim-slumlord copied to clipboard
Is it possible to use other types of UML diagram?
Last time I checked this, plantuml couldn't not produce other diagrams in ascii output. This could have changed in the intervening year, which would be awesome, but I haven't investigated
I test it on https://www.planttext.com/ with their sample of the code. For example, class diagram:
@startuml
title Classes - Class Diagram
class Dwelling {
+Int Windows
+void Lock()
}
class Apartment
class House
class Commune
@enduml
Then I chose txt
,------------.
|Dwelling | ,---------.
|------------| |Apartment|
|+Int Windows| |---------|
|------------|--|---------|
|+void Lock()| `---------'
`------------'
|
|
,-----. ,-------.
|House| |Commune|
|-----|---|-------|
|-----| |-------|
`-----' `-------'
But some other diagrams cause problems
is there an alternative vim-plugin for activity diagram?