Alexander Zlatoverov
- Total activity 68
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 14
- Subscriptions 18
-
Edited How to remove or replace FileEditor from EditorComposite
AnsweredI have a FileEditorProvider with a HIDE_DEFAULT_EDITOR policy. But my logic of the FileEditorProvider#accept method is related to a dumb mode, and my FileEditorProvider itself is not implemented Du... -
Edited How to get a list of libraries when creating a project?
AnsweredI have a component. public class MyComponent implements ProjectComponent { private Project project; @Override public void projectOpened() { StartupManager.getInstance(project).runWh... -
Edited Sync intention menu contributor
AnsweredHi! https://github.com/JetBrains/intellij-community/commit/ce7801efc9ffa237e3b63593ec37bdb7d71b7f4a#diff-eab36da2303724d6d2162347da339119L16 Why it was decided not to introduce a new extension poin... -
Created Please add 2019.2 EAP artifacts to www.jetbrains.com/intellij-repository/
AnsweredArtifacts are not found when trying to build a project with version 2019.2 EAP. -
Created Custom settings for xml formatting
I can not accept custom settings for reformatting the xml file. CodeStyleSettings settings = CodeStyle.getSettings(project);CodeStyleSettings cloneSettings = settings.clone();XmlCodeStyleSettings x... -
Edited Type migration issue
AnsweredMigrating type annotated as NotNull(javax.validation.constraints.NotNull) the default type to migrate to looks too odd. Removing all and typing new type NotNull goes away. If you leave the annotat... -
Edited How to get arguments for enum constant from com.intellij.psi.impl.compiled.ClsEnumConstantImpl
AnsweredI need to get the list of parameters from the enumeration of library. For example: Enum source public enum IntEnum { VALUE_(3); private Integer id; IntEnum(Integer value) { this.id ... -
Created Processing library with custom artifact type
AnsweredThe project has a library whose artifacts are supplied as *.jar and as *.zip. Can the artifact with the *.zip extension be displayed in the tree in the ‘External Libraries’ section of the Gradle no... -
Created ReformatCodeProcessor with custom settings
I create a file and want it to be formatted. For example, so that there are no empty lines. How can I use ReformatCodeProcessor with custom settings? Something like that: CodeStyleSettings settings... -
Created Add PsiWhiteSpace before XmlAttribute
If I write the following code: PsiElement whiteSpaceFromText = PsiParserFacade.SERVICE.getInstance(project).createWhiteSpaceFromText("\n");xmlTag.addBefore(whiteSpaceFromText, xmlAttribute); IDEA w...