diff --git a/README.md b/README.md index 0269e83..bb257f3 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ make it work with JUnit 5. Feel free to use the code (in package ```de.platon42. ## Private TODO list -- code completion suggestion for unresolved local labels, global labels and symbols +- code completion suggestion for unresolved global labels and symbols - support `include` directive - support `opt` directive - suppression support via comments @@ -149,6 +149,7 @@ make it work with JUnit 5. Feel free to use the code (in package ```de.platon42. - Enhancement: `opt` and several other directives (`printt`, `fail` etc.) no longer causes a syntax error when unquoted. - Enhancement: `include`, `incdir` and `incbin` and `output` with `` quotes no longer cause syntax error. - New: Files in `include` directives can be referenced and renamed/refactored. +- New: Code completion for local label definitions, suggesting undefined labels already referenced. ### V0.5 (06-Aug-21) diff --git a/build.gradle b/build.gradle index a459569..bbacc73 100644 --- a/build.gradle +++ b/build.gradle @@ -62,6 +62,7 @@ patchPluginXml {
  • Enhancement: 'opt' and several other directives ('printt', 'fail' etc.) no longer causes a syntax error when unquoted.
  • Enhancement: 'include', 'incdir' and 'incbin' and 'output' with '<pathname>' quotes no longer cause syntax error.
  • New: Files in 'include' directives can be referenced and renamed/refactored. +
  • New: Code completion for local label definitions, suggesting undefined labels already referenced.

    V0.5 (06-Aug-21)