Skip to content

Commit

Permalink
#389 support for @startdef
Browse files Browse the repository at this point in the history
  • Loading branch information
krasa committed May 31, 2023
1 parent 0624ffd commit 8a5eae7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased

- support for @startdef
- bugfix

## 6.1.0-IJ2022.2 - 2023-05-15
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pluginGroup=com.github.esteinberg.plantuml4idea
pluginName=plantuml4idea
pluginRepositoryUrl=https://github.com/esteinberg/plantuml4idea
# SemVer format -> https://semver.org
pluginVersion=6.1.0-IJ2022.2
pluginVersion=6.2.0-IJ2022.2
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild=222.4167.9
pluginUntilBuild=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public enum LanguageDescriptor {
public static final String IDEA_PARTIAL_RENDER = "idea.partialRender";
public static final String IDEA_DISABLE_SYNTAX_CHECK = "idea.disableSyntaxCheck";

public static final String TAGS = "uml|json|dot|jcckit|ditaa|salt|math|latex|mindmap|gantt|wbs|yaml|ebnf";
public static final String TAGS = "uml|json|dot|jcckit|ditaa|salt|math|latex|mindmap|gantt|wbs|yaml|ebnf|def";

public final List<String> types = Collections.unmodifiableList(Arrays.asList(
"actor",
Expand Down Expand Up @@ -77,7 +77,9 @@ public enum LanguageDescriptor {
"@endgantt",
"@endyaml",
"@endwbs",
"@endebnf"
"@endebnf",
"@startdef",
"@enddef"
));

public final List<String> keywords2 = Collections.unmodifiableList(Arrays.asList(
Expand Down

0 comments on commit 8a5eae7

Please sign in to comment.