Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Imants Cekusins
Total activity
410
Last activity
June 25, 2024 06:27
Member since
July 30, 2015 11:35
Following
0 users
Followed by
0 users
Votes
15
Subscriptions
108
Activity overview
Posts (12)
Comments (275)
Sort by recent activity
Recent activity
Votes
Created
March 02, 2016 08:27
I did not notice there was PSI viewer in the first video. :-P Lexer definition possibly expects a crlf. Beginning of file and crlf are not the same thing. how did you define lexer? with grammar kit?
Community
IntelliJ IDEA Open API and Plugin Development
Highlighter does not work for the first token
0 votes
Created
March 02, 2016 11:04
I'd make these changes: CRLF = [\n\r]+ WHITE_SPACE = [\s\t\f] what is the purpose of these:LINE = [^\r\n]+FULL_LINE = [^\ \t\f\r\n]+ [^\r\n]*EMPTY = [^] ? are they necessary?
Community
IntelliJ IDEA Open API and Plugin Development
Highlighter does not work for the first token
0 votes
Created
March 02, 2016 11:25
does it make any difference after you remove EMPTY?
Community
IntelliJ IDEA Open API and Plugin Development
Highlighter does not work for the first token
0 votes
Created
March 05, 2016 19:40
so is element passed to processElementUsages - correct?
Community
IntelliJ IDEA Open API and Plugin Development
Pass in the "right" element to Find Usage Handler
0 votes
Created
March 05, 2016 20:54
do the elements returned by multiResolve implement getNameIdentifier getReference getReferences getPresentation ?
Community
IntelliJ IDEA Open API and Plugin Development
multiResolve() doesn't allow the user to choose a navigation target
0 votes
Created
March 05, 2016 21:25
well this surely wasn't related to any of my problems.
Community
IntelliJ IDEA Open API and Plugin Development
Pass in the "right" element to Find Usage Handler
0 votes
Created
January 21, 2016 19:09
> I've tried to implement the lang.findUsagesProvider with language="JavaScript" but it seems that IntelliJ doesn't care about it. did you try to put a breakpoint to the constructor? is it ever hit?
Community
IntelliJ IDEA Open API and Plugin Development
How to add "rename" functionality for strings in Javascript
0 votes
Edited
January 21, 2016 19:48
in your FindUsagesProvider, does @Override public boolean canFindUsagesFor(@NotNull PsiElement element) return true for the String identifier? you may also need to implement your own WordsScan...
Community
IntelliJ IDEA Open API and Plugin Development
How to add "rename" functionality for strings in Javascript
0 votes
Created
January 23, 2016 18:42
> I got it to work Well done. That's what matters.
Community
IntelliJ IDEA Open API and Plugin Development
How to add "rename" functionality for strings in Javascript
0 votes
Created
February 03, 2016 18:43
implement these extension points: referencesSearch lang.findUsagesProvider findUsagesHandlerFactory
Community
IntelliJ IDEA Open API and Plugin Development
How to get all variables within a PsiClass (global and local variables)
0 votes
«
First
‹
Previous
Next
›
Last
»