J. Ansorg

https://ansorg-it.com/intellij/
- Total activity 37
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 17
-
Created Lazy init in PSI classes and multi-threaded access
Hi, I'm uncertain about PSI caching rules and would love some help here. A user reported a dead-lock at https://github.com/jansorg/BashSupport/issues/467 . Basically this is the UI thread waiting f... -
Created When will all modified files be saved after a refactoring?
AnsweredHi, if a user performs a refactoring, e.g. rename, when will all modified files be finally stored to disk? I'm wondering if the default save timeout will be used or if all files will be committed ... -
Created PsiUtil class from openapi missing in PhpStorm 10.0.2?
Hi,users of my plugin reported an issue: https://github.com/jansorg/BashSupport/issues/299 .The class PsiUtil is missing. The class is available in the community edition and is in the openapi.jar.M... -
Created When is a StubIndex built?
Hi,when will a StubIndex be updated with the information of a certain PsiFIle?I have an inspection which uses a StubIndex to check elements in a file. It accesses a StubIndex for the current PsiFil... -
Created stubs in injected documents?
Hi,is there a way to use a StubIndex to retrieve elements in injected PSI files?Stub indexing seems to be done for the top file, only, I think.The problem I'm trying to solve is to handle code pass... -
Created May I use a stub index to resolve in own containing file?
Hi,BashSupport is quite slow in resolving defintions in large bash files (4400 lines in a real-world test file). I'm trying to speed this up. I've profiled the code and it shows that var and functi... -
Created Why might getStub() return null?
Hi,I have an PsiElement which returns always null when asked for the stub using getStub(). Asking getContainingFile().getStub() also returns null.What might the reason be for this behaviour?My IStu... -
Created HighlightTest like Python?
Hi,I want to write a testcase which checks the result of an Annotator, i.e. the applied highlighing.I've found the Python test which does this: https://github.com/JetBrains/intellij-community/blob/... -
Created plugins.jetbrains.net down
Hi,I noticed that plugins.jetbrains.net isn't reachable any more. plugin.jetbrains.com is online, though.Maybe you need to change .net to point to the same address as .com ?Thanks.Wallaby -
Created PsiLanguageInjectionHost with custom language variables?
Hi,in Bash there is the concept of a heredoc, i.e. a range of text which might be of another language which may be evaluated with Bash variable replacements.For example:export VAR="hello word"cat -...