Ralph

- 活动总数 53
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 12
-
创建于 Code completion invoked at some positions only
已回答I've noticed that the code completion for my plugin doesn't work for some positions. For example, where the | denotes the cursor, at this position MOV @symbol,@| represented by this Psi tree code ... -
创建于 Seemingly random behavior for Find Usages
已回答My custom language plugin implements References and a FindUsagesProvider for numeric and string variables, where the latter all end in a '$' character. ... -
创建于 How to deal with include paths?
已回答For my custom language plugin, I'd like to define include paths that point to additional source library files, like in C. First of all, I don't know at all how to define an include path in IDEA. T... -
创建于 How to create indents for all children of PsiFile?
已回答My language consists of independent lines of types FOO and BAR, which both have further structure. All FOO and BAR elements are children of PsiFile, and their respective blocks are children of the... -
创建于 How to change case in a FormattingModelBuilder?
已回答For my custom language plugin, I've created custom Block and FormattingModelBuilder classes that change indenting and spacing of my language. But how can I change the case of some blocks? I've fou... -
创建于 Custom language plugin: How to use more than one lexer (at different times)?
已回答In my custom language plugin, my language has two variants that treat significant whitespace differently. This is most easily captured by two different flex files, which only differ in X in this r... -
创建于 How to use CodeStyleSettingsCustomizable.showCustomOption for Drop Down Lists?
已回答I'm able to create check boxes with showCustomOption, but I cannot make drop down lists or radio buttons. Looking at several other plugins, I tried something like this: private static final String[... -
创建于 Custom Language Plugin: Folding one range folds all ranges
已回答I've implemented FoldingBuilder from the custom language plugin tutorial. I've used a different logic, but the data structures returned are the same. The folding ranges displayed are correct, but ... -
创建于 How to deal with INTELLIJIDEARULEZZZ in Reference Code Completion?
已回答I'm implementing Reference Completion by implementing getVariants in class MyReferece. When testing the code completion by pressing Ctrl+Space after A = @FO I'm expecting to complete with, e.g., F... -
创建于 Custom Language Plugin Tutorial, Step 6: virtualFiles collection is empty
已回答In the Custom Language Plugin tutorial, step 6: PSI Helpers and Utilities, I defined method findProperties, but when I run my plugin, the definition Collection<VirtualFile> virtualFiles = ...