mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
don't show some java keywords in some java places, but show some keywords in some other places (e.g. IDEA-58589)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
|
||||
public class Main {
|
||||
|
||||
public static Object main() {
|
||||
return null<caret>
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
|
||||
public class Main {
|
||||
|
||||
public static Object main() {
|
||||
return nu<caret>
|
||||
|
||||
}
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Test {
|
||||
{
|
||||
|
||||
Runnable runnable = new Runnable() {
|
||||
public void run() {
|
||||
for (StringBuffer <caret> : new ArrayList<StringBuffer>()) {
|
||||
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user