Junpeng Tang
- 活动总数 59
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 6
- 订阅数 18
-
已编辑于 What's the official way to custom annotate error instead of the default parser error message?
已回答I'm working on a custom language plugin with .bnf file below.Root ::= RootEntry* private RootEntry ::= !<<eof>> topLevelEntry { pin = 1 } private topLevelEntry ::= Field Field ::= FType IDENTIFIE... -
创建于 java.exe finished with non-zero exit value 1
已回答I'm updating my plugin version to 2022.1, but after that I can't run any tasks such as "runIde", "buildPlugin", I got this exception: FAILURE: Build failed with an exception.* What went wrong:Execu... -
已编辑于 No tests found for given includes & jarFiles is not set for PluginDescriptor
已回答After update to 2021.3, when running my tests, I got this error: No tests found for given includes: [MyTestClass](--tests filter). Then I cloned your template project at https://github.com/JetBrai... -
已编辑于 IconLoader requires restart IDE if uninstall or update plugin?
已回答I'm now working on dynamic plugins following this guide: https://plugins.jetbrains.com/docs/intellij/dynamic-plugins.html But I was in trouble after met all restrictions, my IDE still ask for resta... -
创建于 Can LookupElement#getAllLookupStrings() return set without LookupElement#getLookupString()?
I saw a comment for LookupElement#getAllLookupStrings() which says: The returned set must contain getLookupString(). but for my plugin, for example, I created a lookup element with item text: ABC, ... -
创建于 How to configure completion match case setting in unit tests?
已回答I'm writting unit tests for code completion features, but when I debugged to MinusculeMatcherImpl#isFirstCharMatching: if (myOptions == NameUtil.MatchingCaseSensitivity.FIRST_LETTER && (patternI... -
创建于 How to send tasks to background with progressIndicator?
已回答Hi, there are two questions for me, thanks for your reply. 1. I'm using a ConditionalModal Task like below, but when I pressed the 'Minimize' button, nothing happened and the UI was frozen until th... -
已编辑于 Missing highlight when multiple annotators applied to same TextRange?
已回答Hi, all I registered two annotators for my custom language plugin, one used for color highlighting and another for syntax error highlighting. But these two annotators can't work together. If there ... -
创建于 Is there any way to highlight words of Code Style setting example file?
已回答I'm now working on a custom language plugin. My highlighting annotator works fine except for my Code Style setting example file.Not like the Color Scheme setting example file, I can't assign TextAt... -
创建于 How could I install non-bundled plugins by default when debugging my own plugin?
已回答For example, When I'm debuggin a custom language plugin, I need the extra PsiViewer plugin for debugging but it's not installed by default. How could I install it every time I debug my own plugin? ...