File tree Expand file tree Collapse file tree
src/main/java/com/korioz/intellij/lua/annotator Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ val buildDataList = listOf(
4343 ideaSDKShortVersion = " 231" ,
4444 ideaSDKVersion = " 2023.1" ,
4545 sinceBuild = " 231" ,
46- untilBuild = " 232 .*"
46+ untilBuild = " 241 .*"
4747 ),
4848 BuildData (
4949 ideaSDKShortVersion = " 223" ,
Original file line number Diff line number Diff line change @@ -192,14 +192,8 @@ class LuaAnnotator : Annotator {
192192 }
193193 checkUpValue(o)
194194 } else {
195- if (isModuleFile) {
196- newInfoAnnotation(o, " Module field \" ${o.name} \" " ) {
197- it.textAttributes(LuaHighlightingData .FIELD )
198- }
199- } else {
200- newInfoAnnotation(o, " Global variable \" ${o.name} \" " ) {
201- it.textAttributes(LuaHighlightingData .GLOBAL_VAR )
202- }
195+ newInfoAnnotation(o, " Global variable \" ${o.name} \" " ) {
196+ it.textAttributes(LuaHighlightingData .GLOBAL_VAR )
203197 }
204198 }
205199 }
You can’t perform that action at this time.
0 commit comments