Julien
- Total activity 28
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 7
-
Edited Code Completion not working
AnsweredHello, I am building a plugin with Code Completion. The objective is to suggest blocks of code when the user type text. That will work with any language. For now, I am just trying to add suggestion... -
Created Read file from project
AnsweredHi, I am trying to read a file from a project. All I have as an entrypoint is a `PsiFile` instance. I tried `VfsUtil`, `LocalFileSystem` but always get `null` values. Any suggestion to get a file i... -
Created Getting PatchReader to work in a test environment
AnsweredHello, I am writing some tests in order to test my code logic. The code does the following. @VisibleForTestingpublic static List<TextFilePatch> getTextFilePatchesFromDiff(final String patchContent)... -
Created How to make sure the development sandbox has some plugins installed
AnsweredWhen I start the runIDE target, I have a new instance of IntelliJ with my plugin. However, I need to install other plugins to test (such as the Python community edition). I encounter the following ... -
Created Get current git revision programmatically
AnsweredHello, I am trying to get the current git revision programmatically. I checked this post https://intellij-support.jetbrains.com/hc/en-us/community/posts/206127699-Rigth-way-to-get-current-file-revi... -
Created Generic inspection tool
AnsweredHello, I am developing a plugin that does a generic inspection of the code and is not specific to a language. I read https://plugins.jetbrains.com/docs/intellij/code-inspections.html#running-the-co...