Lin Yang
- Total activity 99
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 47
-
Edited Is there anyway to highlight 'injection in injection'?
AnsweredCurrently, I can inject language A into language B, and completions, highlightings, references work well if B is opened in an independent file. But they don't work well if I inject language B into ... -
Edited I need help on plugin development
AnsweredI'm developing a mybatis plugin, I have a problem when I try to implement following feature. I have a mapper xml like bellow: <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE mapper PUBLIC "-//myb... -
Edited Referenced PsiClass stays as "Class 'ClassName' is never used"
I created an XML configuration file and make an attribute value be referencing to a PsiClass. Here is the XML and JAVA file segment <settings> <setting name="configurationFactory" value="custom"/>... -
Created help me with Grammar Kit
I wrote a grammar like below: { tokens=[ DEL_COMMAND="regexp:[dD][eE][lL]" SET_COMMAND="regexp:[sS][eE][tT]" DUMP_COMMAND="regexp:[dD][uU][mM][pP]" EXISTS_COMMAND="regexp:[eE][xX][iI][... -
Created Color Schema
Hi, Is there any plan to custom the background color the navigation bar and tool bar ?Thanks -
Created get information from method invocation
hi, there are codes below: public static final String JET_BRAINS = "JetBrains"; public String getText() { return "Hello"; } public void test(List<String> texts) { texts.a... -
Created Help me with my plugin
hi, I'm developing MyBatis plugin. It seems that @Autowired and @Resource annotation of spring do not work well sometimes when my plugin is enabled. I'v tried my best to find the reason, but ... -
Created Is there any way to register a custom PsiClsss as a spring bean?
Hi, Is there any way to register a custom PsiClsss as a spring bean? I want to registar the mapper interface of Mybatis as spring bean in my Mybatis Plugin. -
Created how to parse xml attribute value with dot to PsiElements
For example <bean com.seventh7.demo.Man" splitted by dot to PsiElement? -
Created Help me with grammar kit plz
Sorry for my bad english :_|I wrote a bnf file for learning grammar kit, this file looks like below:{ tokens = [ string = 'regexp:[\d|\w]+' ]}root ::= expr *expr ::= id '=' string { pi...