Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Dennis Ushakov
Total activity
833
Last activity
November 23, 2018 21:33
Member since
March 30, 2009 18:01
Following
0 users
Followed by
0 users
Votes
1
Subscriptions
330
Activity overview
Articles (0)
Posts (0)
Comments (502)
Sort by recent activity
Recent activity
Votes
Created
March 24, 2016 13:28
Your approach looks ok. Which element are you passing to enumerate method?
Community
IntelliJ IDEA Open API and Plugin Development
Indexing AngularJS expressions
0 votes
Created
March 23, 2016 09:21
Hi, you can use com.intellij.platform.WebProjectGenerator for that purposes. Documentation is somewhat sparse, but you can take a look at the open-source example from AngularJS plugin: AngularJSPro...
Community
IntelliJ IDEA Open API and Plugin Development
Adding to the ProjectWizard PhPStorm Plugin
0 votes
Created
March 23, 2016 18:32
Sorry about delayed reply. JavaScript content is added to HTML templates via injections, so usually you can access JS elements from there using InjectedLanguageManager/InjectedLanguageUtil. Unfortu...
Community
IntelliJ IDEA Open API and Plugin Development
Indexing AngularJS expressions
0 votes
Created
April 01, 2016 08:57
You can add com.intellij.psi.LanguageSubstitutor that will substitute html with whatever language you want. For any syntax customisation you'll need to extend JavaScript language and tweak lexer/pa...
Community
IntelliJ IDEA Open API and Plugin Development
Create custom javascript editor and add intellisense to it.
0 votes
Created
April 04, 2016 09:27
Sorry, but JavaScript support is available only in ultimate edition. So there's no option to reuse existing JS support in community edition
Community
IntelliJ IDEA Open API and Plugin Development
Create custom javascript editor and add intellisense to it.
0 votes
Created
April 04, 2016 13:05
Yes, you can. In this case you'll have to implement everything yourself: lexing, parsing, navigation, etc
Community
IntelliJ IDEA Open API and Plugin Development
Create custom javascript editor and add intellisense to it.
0 votes
Created
January 07, 2015 20:37
Do you have specific JSLanguageDialect for that files? If you do, you can provide JSDialectSpecificHandlersFactory and override createReferenceExpressionResolver method(e.g. https://github.com/JetB...
Community
IntelliJ IDEA Open API and Plugin Development
Can only capture JSLiteralExpression elements with a PsiReferenceProvider?
0 votes
Created
January 13, 2015 09:31
Sorry, yes, I forgot to mention that. By the way, we've done a big refactoring of JavaScript code insight engine for WebStorm 10/IntelliJ 14.1, which resulted in greap JS API changes so if you want...
Community
IntelliJ IDEA Open API and Plugin Development
Can only capture JSLiteralExpression elements with a PsiReferenceProvider?
0 votes
Created
January 30, 2015 15:00
Hi Peter,1,2. You can use JSElementResolveScopeProvider(JavaScript.elementScopeProvider) extension point for that. You'll need to override getResolveScope method to return only GlobalSearchScope.ge...
Community
IntelliJ IDEA Open API and Plugin Development
Javascript - find usages & resolve scope
0 votes
Created
January 12, 2015 16:11
As far as I understand you have 3 languages in your file view provider: HTML for handling HTML sequences, MyTemplate for handling <% %> and JavaScript for <%%> content.Main idea here is that you'll...
Community
IntelliJ IDEA Open API and Plugin Development
Can only capture JSLiteralExpression elements with a PsiReferenceProvider?
0 votes
«
First
‹
Previous
Next
›
Last
»