Scott Wells

- 活动总数 282
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 18
- 订阅数 67
-
创建于 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... -
创建于 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 ... -
创建于 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... -
已编辑于 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... -
创建于 Resolve VirtualFile for entry of archive file reported by custom fileTypeDetector?
已回答I 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... -
创建于 Is it possible to have a PsiReference resolve to an offset in the target element?
已回答This 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... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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...