Szymek Pindelski

- Total activity 92
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 22
-
Szymek Pindelski created a post, making <remove> .. </remove>-wrapped code look like a comment (JSF syntax coloring)
hi,I'm working on a simple plugin that will make JSF <remove> ... </remove> - enclosed code in a JSF xhtml file look like a comment.I managed to cook up a working custom annotator which applies com... -
Szymek Pindelski created a post, custom file editor provider doesn't show up after project reopening
hello,is there a way to postpone custom file editor initialization to the point when idea's indices have been initialized ?The problem is when I re-open a project in Intellij Idea, my custom editor... -
Szymek Pindelski created a post, how to determine if we are in the middle of a 'rename' refactoring ?
hello,is it possible to programatically check wheter we are in the middle of a 'rename' refactoring ?I'm mostly interested in the current status of a default java method rename.THX in advance for a... -
Szymek Pindelski created a post, how to intercept and handle 'rename canceled' event ?
hello,Is there a way to intercept and handle 'rename canceled' events for ordinary java methods ?The RefactoringElementListener contains only two methods : 'elementMoved' and 'elementRenamed' which... -
Szymek Pindelski created a post, method rename using custom reference provider - problem with isReferenceTo() (throws PsiInvalidElementAccessException..)
hello,I'm trying to make use of IDEA's built-in java rename refactoring mechanism using custom reference provider (ElLiteralCustomReferenceProvider).The provider handles ELStringLiterals pointing a... -
Szymek Pindelski created a post, MergingUpdateQueue - how to get notified when it starts and stops processing updates ?
hello,Is there any way to get notified when a MergingUpdateQueue starts and finishes processing enqueued updates ?I have found some startActivity and finishActivity methods but I don't really see h... -
Szymek Pindelski created a post, JavaPsiFacade.findClass() starts returning null after rootsChanged event
hello there,I've encountered a strange problem trying to refresh my plugin's internal data structures after 'rootsChanged' event : JavaPsiFacade.findClass() suddenly starts returning null for prev... -
Szymek Pindelski created a post, how to inject the current project reference into ErrorReportSubmitter subclass ?
hello,is there a way to retrieve an active project reference within an ErrorReportSubmitter subclass ?Or the only way to get a hold of it inside an error submitter is to pass it within a custom exc... -
Szymek Pindelski created a post, "Invalid stub element type in index.. " exception - what is the cause?
hello,I frequently encounter this type of error message when parsing PSI structure of my test project.From what I read about stubs in IDEA I reckon some cached file contents have lost sync with the... -
Szymek Pindelski created a post, contentsChanged vs beforeContentsChange
hello,what are the implications of using contentsChanged (vide : VirtualFileListener) vs beforeContentsChange virtual file event ?My experiments suggest that from beforeContentsChange callback meth...