Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Rustam Vishniakov
Total activity
296
Last activity
July 10, 2023 13:47
Member since
April 09, 2010 09:02
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
124
Activity overview
Articles (0)
Posts (1)
Comments (171)
Sort by recent activity
Recent activity
Votes
Created
June 01, 2020 08:47
There is some documentation available here: https://www.jetbrains.org/intellij/sdk/docs/reference_guide/custom_language_support/code_formatting.html. In general AST structure and formatting model a...
Community
IntelliJ IDEA Open API and Plugin Development
Indentation in Custom Languages
0 votes
Created
January 29, 2020 10:20
The setting applies only to method names, not class names. In this case `Builder` is a class and `Thing.Builder` is a qualified constructor name. If you need to extend this feature to the class nam...
Community
IntelliJ IDEA Users
Align chained constructor calls
0 votes
Created
July 24, 2019 14:16
There is no such API for Java. The only way to prevent something from not being formatted (reindented) is to surround a fragment with `@formatter on/off` tags in line comments.
Community
IntelliJ IDEA Open API and Plugin Development
Override Java code formatter to prevent comments with a specific prefix from indenting?
0 votes
Created
May 16, 2019 09:17
Probably because you have set "Wrap if long" or "Wrap always" in Settings|Editor|Code Style|Java|Wrapping and Braces|Assignment Statement.
Community
IntelliJ IDEA Users
Line wrapping make first line shorter
0 votes
Created
January 18, 2019 10:30
It also depends on the currently selected project. You can choose a different IDE scheme for every project. Assuming that it's a global (IDE) scheme, not "Project", you can find it using the follow...
Community
IntelliJ IDEA Open API and Plugin Development
Setting code style scheme from plugin
0 votes
Created
January 17, 2019 18:49
The API is correct but more actions may be needed depending on what you are trying to achieve eventually.
Community
IntelliJ IDEA Open API and Plugin Development
Setting code style scheme from plugin
0 votes
Created
October 21, 2018 12:35
The right way to reformat a file is to use the following method: CodeStyleManager.getInstance(project).reformatText(file, 0, file.getTextLength()) The method will use the current project settings. ...
Community
IntelliJ IDEA Open API and Plugin Development
ReformatCodeProcessor with custom settings
0 votes
Created
April 23, 2018 09:57
Yes, that's correct, if you need to handle the case when Enter is pressed at the end of the line, you need to implement getChildAttributes() method.
Community
IntelliJ IDEA Open API and Plugin Development
How to remove the first default indent?
0 votes
Created
December 05, 2017 15:52
Assuming that you start with a single line (no wrapping) and set the following options under Settings|Editor|Code Style|Java|Wrapping and Braces: - Method call arguments: Chop down if long, - New ...
Community
IntelliJ IDEA Users
Java formatting of nested method calls
0 votes
Created
September 26, 2017 16:10
It's hard to tell how to fix it without going deeper into plugin code but you definitely need to start with SchemeCodeStylPanel.
Community
IntelliJ IDEA Open API and Plugin Development
Highlighting in Code Style of "schmely" plugin dosen't work properly
0 votes
«
First
‹
Previous
Next
›
Last
»