Tim
- Total activity 33
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 10
-
Created YamlPlainTextImpl not a named element
AnsweredI'm extending the bundled YAML language for a custom language. For this we use the concept of variables that are declared in one part of the file and which can be used in another: variables:- varia... -
Created OptOut plugin dependency
AnsweredI know it is possible to enable (part of) my plugin when another plugin is present using the dependency part of the plugin.xml. Is it also possible to enable part of my plugin only when another plu... -
Created Subsequent completion after insert
AnsweredIs it possible to retrigger the basic completion behavior after a previous completion has inserted the suggestion. What I mean is: <caret> on blank line, user manually triggers completion. One of ... -
Edited SharedProcessingContext between CompletionContributors
AnsweredI'm trying to share information between different CompletionContributors for Basic Completion. I thought I could use the context.getSharedContext (== SharedProcessingContext), however, for every Co... -
Created Performance lag / UI freeze on large injection fragments
AnsweredI'm having an issue with the MultiHostInjector. Whenever a fragment is getting too big (let say about 700 lines) than pressing enter will cause the UI to freeze for several seconds. I've been able ... -
Created StubIndex in unit-test
AnsweredI'm trying to create a unit-test that relies on a custom StubIndex. In production the code works fine but when unit-testing the stubs are not created for my custom StubIndex. I'm using: - LightJava... -
Created Extend YAML Formatter for DSL
AnsweredIs it possible to extend the YAML Formatter behavior by somehow extending the YAMLFormattingContext? The bundled YAML Formatter is a currently a bit limited. One of the things I'd like to add is to... -
Created InlayParameterHintsProvider for Injected Fragments
AnsweredI'm trying to implement the InlayParameterHintsProvider for my custom language. It is registered and is triggered correctly when the DSL file type is loaded (.odt), but when the same ODT code is in... -
Created Make YAML MetaTypeProvider a public API
AnsweredHi, I've created a plugin that extends the YAML language (amongst other things). One of the things that I ended up using was the org.jetbrains.yaml.meta.impl.YamlMetaTypeProvider (internal) that i... -
Edited InjectedLanguage formatting: computeSpacing
AnsweredI'm injection a custom language into YAML. For the custom language I have created a formatter which works fine when the language is not injected but resides in its own file. When injected, everyth...