Dan
- Total activity 49
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 18
-
Created Hiding Inlay Hints when code is folded
AnsweredI am working on a plugin for a language that uses numeric values to reference constant values. To aid in understanding code at a glance, I have enabled inlay hints which give a text name to the num... -
Created Documentation Provider "Multiple Implementations" problem
I am writing a plugin for a language that has a limited number of variables which are numbered (ie. VAR0-9, OBV0-9, MV00-MV99). In the documentation though, each set is described as a single entry ... -
Created File info in Lexer/Parser
AnsweredI am working on a plugin that has 5 versions of the language and each language shares the same extension. In order for the plugin to work, I use a check in ParserUtil to see which version has been ... -
Created Help Handling a Language With No Command Delimiters
AnsweredI am trying to write a plugin for an uncommon language, I would add some code completion, but more so I wanted to add inlay hints and links to grammar notes, and syntax checking. The Language is pe... -
Created StubIndex Version does not properly index on update
So I am having a problem, and I am not sure what could possibly cause it, or possible solutions. I have a number of indices, and every time I update the stub version, the IDE appears to be re-index... -
Created My Problem with registering a QuoteHandler extension point
AnsweredNot sure if this is where I should post this, but I read extensively from this board, so I figured this was the best place to post my solution to a QuoteHandler extension point problem. I had tried... -
Edited XML DOM API - Tag Completion
Hello, I thought I would try to create a plugin for an XML like language using the XML DOM API. I created classes extending DomElement with @SubTag, @SubTagList and @Attribute annotations. I though... -
Created XML like language, Refused to parse text
Hello, I am trying to create a plugin for an XML like language. My language extends XMLLanguage, and my File type extends from XMLLikeFileType, and I have registered the FiletypeFactory and dom.fil... -
Created Custom plugin with custom decompiler
Hello I'm currently working on a plugin for a web framework that uses a custom programming language. I was able to write a plugin that has basic functionality built for working with the full source... -
Created Code completion and syntax error recovery
I'm having a problem that I cannot find an answer to. I've been working on a grammar, and it can parse the script files when the code in the file is well formed, but it fails pretty hard when somet...