W L

- Total activity 43
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 11
-
Edited WriteCommandAction.runWriteCommandAction got stuck after the IDE was updated to 2024.2
AnsweredI have an internal plugin that uses `WriteCommandAction.runWriteCommandAction` to programatically edit source files. Its basic logic looks like folllowing: CompletionContext context = obtainEditorC... -
Edited How to inject languages into Jupyter Notebooks (> 2019.3)?
AnsweredIt seems the new Jupyter Notebook (2019.3) is not implemented via language injection mechanisms. All PSI elements found by PsiViewer are not injectable. However, the ``` ``` sections in markdown ce... -
Created How to get plugin ids from the plugin repo ?
AnsweredHello, I want to develop an intellij plugin, which will depend on other plugins. I'm using: https://github.com/JetBrains/gradle-intellij-plugin as the build system. But how to get the plugin id fro... -
Created Want to develop plugins for IPython Notebook editor, where to start?
I have some experiences on developping plugins for the intellij platform. I plan to write a new plugin for the IPython Notebook editor, but I don't know where to start. I found this directory in... -
Created My language plugin never got run by CLion
This plugin worked in early clion eaps, but stopped working after several updates of clion.Here's plugin.xml:<idea-plugin version="2"> <id>com.example.test</id> <name>Test</name> <version>1.0</v... -
Created plugin development: DocumentationProvider for CLion
Hi! Here is a clion plugin that worked in early clion eaps : https://github.com/itechbear/IntelliJ-MacroExpansion. It's a simple plugin that formats code documentations. After several updates... -
Created How to register a filetype that has no file name extensions?
I want to register a special file type. All files have a fixed name without any extension, for example, "CUSTOM". I checked LanguageFileType class and got stuck. How to register this file type in i... -
Created How to format a code fragment outside a file?
Or how to format a string in memory?This is what I've done. public static String format(Project project, Language language, String text) { PsiFile psiFile = PsiFileFactoryImpl.getInstance... -
Created How to complete string literal expressions?
I want to do auto-completion with string literal expressions. This can be useful when I want to automatically insert some extra literals, for example, system file paths.I tried to write my own Comp... -
Created How to sort the suggest list?
I made a plugin that extends completion.contributer, which works fine, except that there is one problem: the suggested words provided by my plugin always stay on top of the list. That's not what I ...