Scott Wells
- Total activity 282
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 18
- Subscriptions 67
-
Created How can I make the debugger view default to the "Debugger" tab instead of the "Console" tab?
This thread seems to indicate that I'd get the desired behavior by default: https://intellij-support.jetbrains.com/hc/en-us/community/posts/206257099-starting-debug-session-have-debugger-instead-of... -
Created Use "New Directory" instead of "New Package" in plugin?
CreateDirectoryOrPackageAction chooses to present itself as "New Package" instead of "New Directory" in my custom language plugin. This custom language doesn't have the same notion of packages as ... -
Created Possible to add custom ViewSettings flag?
Is it possible to add a custom flag to ViewSettings/ProjectViewSettings? I'd like to allow my plugin's users to toggle visibility for a subset of project files (XML metadata files that are general... -
Edited ParameterInfoHandler not parameterized by PsiElement results in ClassCastException
This is more of an FYI about a plugin SDK inconsistency. I originally logged a bug for this, but it was resolved and I was asked to post here for Open API issues. I've create a custom ParameterInf... -
Created Resolve VirtualFile for entry of archive file reported by custom fileTypeDetector?
AnsweredI have a custom fileTypeDetector that determines the file type of files matching an otherwise unregistered file extension dynamically. Some of these files are reported as the archive file type bec... -
Created Is it possible to have a PsiReference resolve to an offset in the target element?
AnsweredThis may sound like a strange request, but I have a situation where the target of a reference is basically a plain text file, but I know the specific offset in that file that corresponds to the ref... -
Created Is there any way to open/update a page in browser in a named tab?
I've added a feature to my plugin that allows users to preview/show content for the plugin's custom markup languages in the browser. I'm currently using BrowserUtil.browse() to do this. The probl... -
Created How can I mark a custom breakpoint as verified?
I've been implementing a debugger for my custom language plugin. Overall it's come along very well, so now I'm just trying to add some cosmetic polish. I have a custom breakpoint type and want to... -
Created Retained references to PsiElements after project is closed
I noticed a bit back that there seemed to be a memory leak in my custom language plugin, in particular when switching back and forth between projects. I finally took some time to profile this a bi... -
Created Register keystroke for EditorTextField
My plugin hosts an EditorTextField where the user can edit and execute an ad hoc script in the support custom language. I'd like to register CTRL+ENTER/CMD+ENTER as a keystroke that can be used to...