Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Scott Wells
Total activity
282
Last activity
January 12, 2023 14:43
Member since
January 25, 2016 00:45
Following
0 users
Followed by
0 users
Votes
18
Subscriptions
67
Activity overview
Posts (51)
Comments (146)
Sort by recent activity
Recent activity
Votes
Created
May 02, 2017 15:05
For the folks at JetBrains, any thoughts on this? I've tried to force my completion contributor to be before XmlCompletionContributor, but when I do that it says that requested sort order can't be...
Community
IntelliJ IDEA Open API and Plugin Development
XmlCompletionContributor is stopping the completion result set before my plugin's completion provider/contributors
0 votes
Created
April 28, 2017 02:12
UPDATE: I've installed Community Edition 2016.3 and 2017.1 and have verified that 2016.3 works properly with my completion contributor being engaged consistently. 2017.1 is better than 2017.2 but ...
Community
IntelliJ IDEA Open API and Plugin Development
XmlCompletionContributor is stopping the completion result set before my plugin's completion provider/contributors
0 votes
Edited
April 12, 2017 17:12
Alexander, has something changed recently in this area? My implementation of CssInclusionContext is no longer being called on 2017.1.1. Unfortunately I'm not sure if this change occurred very rec...
Community
IntelliJ IDEA Open API and Plugin Development
Can a plugin tell IDEA Ultimate Edition where to find additional JavaScript/CSS files?
0 votes
Created
March 18, 2017 21:22
Dmitry, thanks to your advice to set a breakpoint in EditorImpl.release(), I found the issue, and I was doing it to myself. Thanks so much for the response!
Community
IntelliJ IDEA Open API and Plugin Development
EditorTextFields being disposed across all open projects when one project closed
0 votes
Created
February 24, 2017 19:24
Thanks, Bas. Yes, that's what I found to be the case. Unfortunately as mentioned above, I have no control over the set of rules in the external tools that I'm integrating (one is a PMD plugin and...
Community
IntelliJ IDEA Open API and Plugin Development
Can a single global inspection add problems for multiple groups?
0 votes
Created
February 20, 2017 21:14
Thanks, Colin. I considered just such an option, but the issue is that I would be chasing a fast moving target in terms of the types of rules/violations coming from the external tool. For now I'v...
Community
IntelliJ IDEA Open API and Plugin Development
Can a single global inspection add problems for multiple groups?
0 votes
Created
February 19, 2017 21:39
Quick update...I tried to register an InspectionToolPresentation using the "presentation" attribute of the "globalInspection" EP, but I'm getting a ClassNotFoundException. Looking at the classload...
Community
IntelliJ IDEA Open API and Plugin Development
Can a single global inspection add problems for multiple groups?
0 votes
Created
February 17, 2017 16:51
Okay, here's the final (and vastly simpler) solution. I changed my lexer token for a string literal to: BAD_STRING_LITERAL='([^'\\\r\n]|\\.)*STRING_LITERAL={BAD_STRING_LITERAL}'...%%<YYINITIAL> { ...
Community
IntelliJ IDEA Open API and Plugin Development
Problem with HighlighterIterator passed to QuoteHandler
0 votes
Edited
February 15, 2017 13:51
Okay, I think I've managed to resolve this by changing my string literal expression from: '([^'\\]|\\.)*' to: '([^'\\\n]|\\.)*['\n] which is actually more correct since in this language, strings ca...
Community
IntelliJ IDEA Open API and Plugin Development
Problem with HighlighterIterator passed to QuoteHandler
0 votes
Edited
February 14, 2017 15:43
Hi, Dmitry. I did debug the root cause issue a bit more and found something quite interesting that I'm hoping might help shed some light on what's happening and what I might to do address it prope...
Community
IntelliJ IDEA Open API and Plugin Development
Problem with HighlighterIterator passed to QuoteHandler
0 votes
«
First
‹
Previous
Next
›
Last
»