Vladimir Schneider
Independent software developer and freelance consultant. Author of Markdown Navigator, Missing In Actions, Git File Case Fixer, Arduino Support, touch-typists-completion-caddy, plugins for JetBrains IDEs.
- Total activity 623
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 177
-
Edited Strange document behaviour in some light platform tests
AnsweredIn a few tests running under LightPlatformCodeInsightFixtureTestCase I started getting strange failures. If I run the single test class all pass. When I run a test suite of multiple test classes th... -
Created New Behavior for VCS Root related messages, How do I know when all VCS roots for the project have initialized?
AnsweredNew behaviour in intellij-community master branch. Beta still has the old behaviour for project initialization VCS messaging. In my plugin I subscribe to ProjectLevelVcsManager.VCS_CONFIGURATION_CH... -
Created Java Format Code looses indentation for multi-line TODO: in JavaDoc comments
AnsweredI love multi-line TODO: comments in general and in JavaDocs to draw attention to something or mark a to do item. However, I have not found a way to configure Java code style options to not loose th... -
Created How can I disable UI freezed detection for IDE under debugging?
AnsweredIn the last few versions I started getting occasional debugger freezes when single stepping code for highlighting, line markers or annotations. I suspect it has to do with the UI freeze checks si... -
Created 2019.3 Beta Release RADICALLY Different from EAP versions
AnsweredI just got a surprise with the Beta version of 2019.3. I have been dutifully running tests on latest versions and all was going good. Until I got the Beta of the IDE. First of all it comes with Kot... -
Edited How do I make a Java PsiLiteralExpression behave as a declaration for references and refactoring?
AnsweredI want to link elements in a markdown file to java string literals so the string literal appears as the declaration and the markdown element as a reference. The issue is that the java string litera... -
Created How can I customize test result tree view actions?
PlannedI have a tests which use special format Markdown files to generate parameters for parameterized tests. The TestTreeView results in: All navigation from the TestTreeView is to the Java test file ... -
Created Where does 2019.3 plugin manager look for plugins? Getting is incompatible in log but plugin is working.
I am getting this in the log for my snapshot build and in the log of debug session for the plugin: 2019-09-30 22:47:16,860 [ 8156] WARN - com.intellij.util.xmlb.Binding - no accessors for class o... -
Created What is the correct way to register an extension point in code instead of plugin.xml?
AnsweredIn my plugin I dynamically register an extension for the paste handler to allow users to disable this feature. val rootArea = Extensions.getRootArea() val extensionPoint = rootArea.getExtensionPoin... -
Edited Where and how to report issues for SNAPSHOT builds from in intellij-community master branch?
AnsweredI build a SNAPSHOT intellij-community master branch every morning and use it to compile and test my plugin to get a heads-up with any upcoming changes to the API or behaviour. I also have some mods...