Scott Wells

- Total activity 282
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 18
- Subscriptions 67
-
Created Possible to have multiple SDKs/libraries in PyCharm?
AnsweredThis 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... -
Created Does anyone know the classloader wizardry required to use external third-party jars as "provided" at runtime?
AnsweredI 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... -
Created 2020.1 RC1 reveals that my plugin has an unexpected dependency on Java Code Coverage
AnsweredMany 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... -
Created Is there any way to add JavaScript type inference logic?
AnsweredI originally posted this on the Slack intellij-platform channel, but when that came up empty Yann Cebron recommended that I ask the same question here: Another JavaScript extensibility question.... -
Created How to implement language interleaving, e.g., markup inside JavaScript/CSS inside a script/style tag inside markup?
AnsweredMy custom language plugin includes an HTML-based markup language with additional templating tags and an embedded expression syntax. I've had that all working for a very long time using a MultiplePs... -
Created Language injection into strings and string concatenation?
AnsweredMy plugin's custom language supports an integrated query language that can be used both statically and dynamically. Dynamic usage takes place via strings, typically a concatenation of string litera... -
Edited VfsUtil.markDirtyAndRefresh() seems flaky in recent builds (2019.1+)
CompletedMy plugin has several processes that run behind-the-scenes to populate portions of the filesystem. After these processes complete, I've always called VfsUtil.markDirtyAndRefresh(false, true, true, ... -
Created Best practices for packaging a plugin that uses JAX-WS, etc., to work under both Java 8 and Java 11 JREs
AnsweredMy custom plugin uses Apache CXF to invoke external SOAP services via WSDL-generated clients, and CXF uses JAX-WS. Java 11 no longer bundles the J2EE jars, so my plugin doesn't work in 2019.1 when ... -
Edited Issues building my plugin with 2019.1 RC
AnsweredI just installed the 2019.1 release candidate and tried to build my plugin. I'm receiving three compilation errors (shown with the corresponding lines of code): Error:(628, 69) java: cannot access ... -
Created 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...