T M Schouten
- 活动总数 77
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 43
- 订阅数 14
-
已编辑于 Registering a tool window programmatically without using Internal api
已回答The documentation at https://plugins.jetbrains.com/docs/intellij/tool-windows.html#programmatic-setup recommends to use ToolWindowManager.registerToolWindow() However, as far as I can see in 2023.... -
创建于 Using externalIdPrefix for a stubElementTypeHolder generated by Grammar-Kit
已回答We want to specify externalIdPrefix for our stubElementTypeHolder as recommended by the docs: To speed up IDE loading, it's recommended that this extension is used for interfaces containing only I... -
创建于 Stub ids not found for key in index
已回答I've received this exception from a user: java.lang.Throwable: Stub ids not found for key in index = nl.hannahsten.texifyidea.commands, file = file:///Users/compux72/Developer/resume/scripts/scheme... -
创建于 How to add a user-overridable ProblemHighlightType for an inspection descriptor which is error by default?
已回答**What steps will reproduce the issue?** 1. Write an inspection in a plugin2. Use `ProblemHighlightType.GENERIC_ERROR` for the descriptor3. When user uses the plugin, he changes the inspection seve... -
已编辑于 Recommended way to create custom code style settings: createCustomSettings is marked as Internal api
已回答As recommended in https://jetbrains.org/intellij/sdk/docs/tutorials/custom_language_support/code_style_settings.html?search=code#define-code-style-settings-provider we are overriding `createCustomS... -
已编辑于 How to suppress the postfix template autocomplete popup when a full stop is typed after part of a live template key?
Environment The TeXiFy-IDEA plugin for the LaTeX language. For this case, it is relevant that parts of live template keys can be actual words which users type in text.Original issue report: https:/... -
已编辑于 How to avoid a caret stop at punctuation when it is not a word boundary?
已回答In LaTeX we have constructs like \command for which it makes sense to handle them as one entity, so selection will select all of the \command in one go.For this we have implemented a WordBoundaryFi... -
已编辑于 How to register a New Project type without using the non-dynamic ModuleType extension?
已回答The goal is to both be able to install the plugin without restart, and to have a custom language option in the new project dialog. Currently, we establish the second by using a ModuleType. However,...