Junpeng Tang
- 活动总数 59
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 6
- 订阅数 18
-
创建于 Custom language dynamic plugin unload failed because of the ImageDataByPathResourceLoader
I'm now working on a custom language plugin, just registered a file type and file icon, following the tutorial [Custom Language Support Tutorial-2. Language and File Type](https://plugins.jetbrains... -
创建于 What is this feature called? Preview the ResourceBundle property value
已回答In my plugin source code, a ResourceBundle can be previewed:Please tell me what is this feature called? How could I enable/disable this feature, and how could I use this feature in my plugin?Beca... -
创建于 How to enable/disable this ResourceBundle Live Preview?
已回答I can't find how to enable/disable this feature below, please teach me, thankswhich refers to a ResourceBundle in Java: -
创建于 How to make same token type syntax hightlight with different styles?
已回答I've defind two statements in bnf grammar file. and I want to syntax highlight IDENTIFIER with two different style, but I have no idea how to do this, please help…more detail here: https://intellij... -
已编辑于 How to make syntax hightlight with different style?
已回答I want to highlight my IDENTIFIER token type in different ways. With my .bnf file, I defined something like below:... tokens = [ IDENTIFIER='regexp:([:letter:] | \_)(\w | \.)*' ] NamespaceDefini... -
已编辑于 Annotator not visit parent element if syntax error happens
已回答I'm now having two annotators, one for highlight syntax errors, and one for highlight the keywords. But the keywords annotator is not working if syntax error happens. Then I did some debug, it turn... -
已编辑于 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...