Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Reece Dunn
Total activity
123
Last activity
June 04, 2022 09:25
Member since
October 08, 2016 14:40
Following
0 users
Followed by
0 users
Votes
13
Subscriptions
38
Activity overview
Posts (23)
Comments (49)
Sort by recent activity
Recent activity
Votes
Created
August 20, 2021 07:37
Thanks. I'll take a look at that provider.
Community
IntelliJ IDEA Open API and Plugin Development
Implementing the XML API for a custom language
0 votes
Created
August 19, 2021 17:10
Thanks for the reply. -- My issue is not trying to get the username for the credentials, but connecting to the same service with different users. My serviceName looks like this: "uk.co.reecedunn.in...
Community
IntelliJ IDEA Open API and Plugin Development
PasswordSafe and multiple users
0 votes
Created
August 16, 2021 19:18
You can use PsiTreeUtil.getContextOfType to get access to the YAMLScalar element from your DSL, you can then use the YAML API to traverse the elements. If you want to adapt the YAML file itself, yo...
Community
IntelliJ IDEA Open API and Plugin Development
Processing part of a YAML file with specific lexer and parser
0 votes
Created
August 15, 2021 07:38
The best way to do this is with language injections to insert the ACertainType language into the YAML file. You can implement the MultiHostInjector interface to do this programmatically, specifying...
Community
IntelliJ IDEA Open API and Plugin Development
Processing part of a YAML file with specific lexer and parser
0 votes
Created
August 15, 2021 07:07
You need to escape the <, >, and & characters (e.g. `this & that`) as <...> will be interpreted as a HTML tag (e.g. `<p>Test</p>`).
Community
IntelliJ IDEA Open API and Plugin Development
How to show special character like "<" with HintManager.getInstance().showInformationHint ?
0 votes
Created
July 17, 2021 08:56
The `[code` part has the same colour as the other identifiers. Is your lexer tokenizing that properly as two separate tokens, or is it tokenizing it as a single identifier token?
Community
IntelliJ IDEA Open API and Plugin Development
PairedBraceMatcher is not working for Bracket followed by an identifier
0 votes
Created
July 09, 2021 07:06
Not yet. I tried experimenting with the light and heavy fixtures a while back, but had various issues getting it working. I haven't re-looked at this yet. I'll probably initially modify the tests t...
Community
IntelliJ IDEA Open API and Plugin Development
How do I register a language with a test fixture for parser, etc. tests?
0 votes
Created
June 15, 2021 11:25
There are two strategies I've used for this in my plugin. For different versions of the same language and language extensions, I have a project configuration to specify the supported version, then ...
Community
IntelliJ IDEA Open API and Plugin Development
Strategy to support two dialects for same programming language in my plugin
0 votes
Created
May 18, 2021 17:47
That works, thanks.
Community
IntelliJ IDEA Open API and Plugin Development
Recommended way to format resource messages.
0 votes
Created
March 26, 2021 20:41
Another thing that would be useful for me is having an easy way to implement cached properties that get invalidated when the subtree of the PsiElement changes.
Community
IntelliJ IDEA Open API and Plugin Development
Best practices for CachedValuesManager.getProjectPsiDependentCache ?
0 votes
«
First
‹
Previous
Next
›
Last
»