Rahul
- Total activity 21
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 6
-
Created Do InlayHints work with Gateway?
AnsweredI have a plugin that renders some UI elements in the editor using InlayHints. When used with JetBrains Gateway, 99% of the plugin works just fine when it is installed on the host (this includes edi... -
Created Italic unicode character support on Windows
AnsweredMy plugin displays code completion suggestions as inlays rendered in the user's font (usually JetBrains Mono) and italicized. Several of my users on Windows report that non-ascii characters do not ... -
Created Key B duplicated (likely due to Proguard?) issue
AnsweredA user of my plugin reported the following issue Plugin 'izhangzhihao.rainbow.brackets' failed to initialize and will be disabled. Please restart WebStorm.com.intellij.diagnostic.PluginException: K... -
Created How do I get the final caret offset after a document change event?
AnsweredIn my plugin I want to do something every time an editor's document changes, and I want to know what the caret offset will be after that change occurs. Easy right? I register a DocumentListener and... -
Created EditorActionManager is not getting hit in between auto-closed parantheses
AnsweredIn my plugin I've registered an action handler to do something when the tab key is hit: editorActionManager.setActionHandler(ACTION_EDITOR_TAB, EditorActionTabHandler(oldTabHandler)) This works wel...