Scott Wells

- 活动总数 282
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 18
- 订阅数 67
-
已编辑于 Do I need to do anything special to have multi-line TODO comments work for line comments in my custom language?
已回答I just updated to IntelliJ IDEA 2018.3 and one of the features I'm most excited about is multi-line TODO comments. My code generally contains a host of blocks like the following: // TODO: Do someth... -
创建于 CreateFileFromTemplateAction vs. CreateFromTemplateActionBase - can I have the best of both worlds?
已回答All of the template-based file creation actions in my plugin extend CreateFileFromTemplateAction. Doing so provides some wonderful inherited behavior such as a selector for multiple templates for t... -
创建于 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... -
创建于 Global inspection results not highlighting in editor?
I'm 99% sure this is a recent behavioral change, and it may well be something I've done locally in config, but I'm stumped. My plugin includes two global inspections that run external static code a... -
创建于 Supporting multiple distinct major versions of a plugin
I'm planning to introduce the next major version (2.x) of my plugin very soon. For all intents and purposes it will be considered a distinct product from the previous major version (1.x), as it's g... -
创建于 OAuth from plugin
Is there any existing way in the plugin SDK to use OAuth to authenticate? I found these existing threads on the topic: https://intellij-support.jetbrains.com/hc/en-us/community/posts/206765875-Oaut... -
创建于 Case-insensitive LookupElements mess with the lookup string
The languages in my custom language plugin are case-insensitive. I'd like to make the completion LookupElements case-insensitive, but this has a quite strange side-effect on the inserted strings. ... -
创建于 Possible to have multiple SDKs/libraries in PyCharm?
已回答This is a repost from the Slack intellij-platform channel per-request of Karol L.: Is it possible to have a PyCharm project with its Python interpreter added as a dependency via something other tha... -
创建于 Does anyone know the classloader wizardry required to use external third-party jars as "provided" at runtime?
已回答I already posted about this in the platform dev Slack group and had a quick chat with one person there who has solved this for Clojure, and I've also already implemented a fully-working solution by... -
创建于 2020.1 RC1 reveals that my plugin has an unexpected dependency on Java Code Coverage
已回答Many moons ago I was involved in the following thread about adding code coverage support to my plugin: https://devnet.jetbrains.com/message/5548931 Anna Kozlova provided wonderful guidance, and asi...