主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Rustam Vishniakov
活动总数
296
最后的活动
2023年07月10日 13:47
成员加入日期
2010年04月09日 09:02
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
124
活动概览
文章(0)
帖子(1)
评论(171)
按最近的活动排序
最近的活动
投票数
创建于
2015年10月29日 15:31
It's not that simple. In reality CodeInsightColors contains both Java-specific attributes and generic ones for reasons I'd call "historical". It has to be split with Java part moved to javaimpl. Th...
社区
IntelliJ IDEA Open API and Plugin Development
OpenAPI: move class
0 票
创建于
2016年01月11日 16:44
1) You need to make sure there is a single (leaf) block covering all the content which should not be modified. The block should cover all unmodifiable whitespaces (indents). Alternatevely you may n...
社区
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 票
创建于
2015年09月04日 10:41
I guess only end MARKER should keep its position. Thus it's the only PSI element which should never be indented. When indenting lines, the editor checks every element at the beginning of every line...
社区
IntelliJ IDEA Open API and Plugin Development
Perl5 plugin for Intellij IDEA
0 票
创建于
2012年02月21日 17:39
resetImpl() takes orginal settings and updates UI (panel controls) with values provided in CodeStyleSettings. Note that "settings" parameter contains root settings which in turn contain settings f...
社区
IntelliJ IDEA Open API and Plugin Development
Code style options for custom language plugin
0 票
创建于
2013年04月05日 11:49
The schemes need to be fixed because currently most of them (except bundled with our own products) do not contain all the necessary default colors. But in any case it's important that plug-in autho...
社区
IntelliJ IDEA Open API and Plugin Development
Usage of DefaultLanguageHighlighterColors in custom language plugin
0 票
创建于
2014年06月14日 09:12
Absolutely. Formatter knows nothing about elements, it operates at different abstraction model which consists of blocks. If you want to control spacing between any of two elements, each of them mus...
社区
IntelliJ IDEA Open API and Plugin Development
problems understanding FormattingModelBuilder and AbstractBlock
0 票
创建于
2015年05月06日 12:01
Currently there is no API for built-in code styles and this is done intentionally because a code style scheme contains settings for multiple languages and if some sort of a bundled scheme would be ...
社区
IntelliJ IDEA Open API and Plugin Development
Codestyle xml
0 票
创建于
2016年05月24日 16:23
You have still missed one thing: the last statement is still wrong, it should be "return Indent.getNoneIndent()", not "return parent.getIndent()". I have already explained it above.
社区
IntelliJ IDEA Open API and Plugin Development
Formatter and Indentation
0 票
创建于
2016年05月24日 14:47
Correct. You can definitely assign the indentation type at block creation time. In reality child blocks are created lazily on demand but at this point they may get some fixed assigned indentation.
社区
IntelliJ IDEA Open API and Plugin Development
Formatter and Indentation
0 票
创建于
2016年05月24日 14:32
The indent in a formatter block is always relative to it's parent. If you want a child block be unindented to it's parent, you simply return Indent.getNoneIndent(), not parent.getIndent(). In you c...
社区
IntelliJ IDEA Open API and Plugin Development
Formatter and Indentation
0 票
«
第一页
‹
上一页