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.
- 活动总数 623
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 4
- 订阅数 177
-
创建于 How to not implement a deprecated interface method, which has no default implementation?
已回答In the comment for ExternalDocumentProvider.hasDocumentationFor() it says if not implemented. How is that possible when there is no default implementation? package com.intellij.lang.documentation;i... -
创建于 How many years does an API need in purgatory of EXPERIMENTAL status before it is forgiven its sins and considered STABLE?
已回答This one has been stable for almost four years. -
创建于 What does JetBrains prefer to see from Plugin Verifier: Deprecated or Experimental?
已回答I give up and defer to your preferences: /** * @deprecated please use {@link HyperlinkLabel#setTextWithHyperlink(String) with "beforeLinkText<hyperlink>linkText</hyperlink>" instead} */ @Dep... -
创建于 intellij-community.master build breaks ActionManagerEx API
已回答Changes in the lastest intellij-community master branch, updated this morning, break ActionManagerEx API by adding an argument to function without default and without java overloads. Is it the exp... -
创建于 Deprecated EditorWindow.INITIAL_INDEX_KEY with replacement marked as @ApiStatus.Internal
已回答Opening file with specific tab index using INITIAL_INDEX_KEY is deprecated: /** * @deprecated Use file opening methods taking {@link FileEditorOpenOptions} instead * and pass the index throug... -
已编辑于 ProjectPlainTextFileTypeManager.getFiles() is deprecated, replacement PersistentFileSetManager.getFiles() is package private
已回答ProjectPlainTextFileTypeManager.getFiles() is deprecated, here is the comment: Deprecateduse OverrideFileTypeManager.getFiles() instead The replacement, PersistentFileSetManager.getFiles() is packa... -
创建于 How can I disable bundled plugin in gradle intellij tasks, for example buildSearchableOptions task?
已回答I need to disable one or more bundled plugins in my gradle build intellij tasks, for example buildSearchableOptions task will fail because of conflict with bundled plugin. Is there a way to disable... -
创建于 How to properly use maven library in plugin test case? Everything I tried, fails with java.lang.RuntimeException: java.io.IOException: Cannot find IntelliJ IDEA project files at
已回答I have tried every permutation of JavaCodeInsightFixtureTestCase and LightJavaCodeInsightFixtureTestCase, with DefaultLightProjectDescriptor, with my own implementation of LightProjectDescriptor, w... -
创建于 How to disable parameter hints for an editor instance? EditorSettingsExternalizable.SHOW_PARAMETER_NAME_HINTS is now ignored.
已回答In my plugin, MissingInActions, I disabled parameter hints for active editor if more than one caret is displayed, to eliminate text displacement which made multi-caret ops harder to use. I noticed ... -
创建于 API stable since 2017 is marked as experimental.
已回答In my Missing In Actions plugin, I have an option to disable editor parameter hints in multi-caret mode. The hints are great except when using multi-caret mode because they mess up the text positio...