2022-02-11 00:23:01 +08:00
|
|
|
<idea-plugin>
|
|
|
|
|
<id>io.github.linwancen.show-comment</id>
|
|
|
|
|
<name>Show Comment</name>
|
|
|
|
|
<vendor email="1498425439@qq.com" url="https://github.com/LinWanCen/show-comment">林万程</vendor>
|
|
|
|
|
|
|
|
|
|
<description><![CDATA[
|
2022-03-07 23:58:57 +08:00
|
|
|
English Notes:
|
|
|
|
|
<ul>
|
|
|
|
|
<li>Show javadoc comments at the Project view Tree structure.
|
|
|
|
|
<li>Show javadoc comments at the end-of-line.
|
|
|
|
|
<li>Show javadoc comments at "xx ClassNameOrSimpleName.json" end-of-line.
|
|
|
|
|
<li>One of the above features can be turned off in<br>
|
|
|
|
|
settings -> Tools -> Show Comment Global
|
|
|
|
|
<li>Font color of end-of-line comments can be modified in <br>
|
|
|
|
|
settings -> Tools -> Show Comment Global
|
|
|
|
|
<li>Class name prefix filter of end-of-line comment can be modified in<br>
|
|
|
|
|
settings -> Tools -> Show Comment Project
|
|
|
|
|
</ul>
|
|
|
|
|
Chinese Notes:
|
|
|
|
|
<ul>
|
|
|
|
|
<li>在结构树显示 文档注释。
|
|
|
|
|
<li>在行末尾显示 文档注释。
|
|
|
|
|
<li>行末注释支持 "xx 类全名或简名.json"。
|
|
|
|
|
<li>可以在设置中 关闭 上面其中一个功能。
|
|
|
|
|
<li>可以在设置中 修改 行末注释 的字体颜色。
|
|
|
|
|
<li>可以在设置中 修改 行末注释 的类名前缀过滤。
|
|
|
|
|
</ul>
|
2022-02-11 00:23:01 +08:00
|
|
|
]]></description>
|
|
|
|
|
|
|
|
|
|
<!-- please see https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html
|
|
|
|
|
on how to target different products -->
|
|
|
|
|
<depends>com.intellij.modules.platform</depends>
|
|
|
|
|
<depends>com.intellij.modules.java</depends>
|
|
|
|
|
|
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
2022-02-26 03:10:43 +08:00
|
|
|
<editor.linePainter implementation="io.github.linwancen.plugin.show.LineEnd" />
|
|
|
|
|
<projectViewNodeDecorator implementation="io.github.linwancen.plugin.show.Tree"/>
|
2022-02-11 00:23:01 +08:00
|
|
|
|
|
|
|
|
<applicationConfigurable parentId="tools"
|
2022-02-26 03:10:43 +08:00
|
|
|
instance="io.github.linwancen.plugin.show.settings.AppSettingsConfigurable"
|
|
|
|
|
id="io.github.linwancen.plugin.show.settings.AppSettingsConfigurable"
|
2022-02-13 02:40:11 +08:00
|
|
|
displayName="Show Comment Global"/>
|
2022-02-26 03:10:43 +08:00
|
|
|
<applicationService serviceImplementation="io.github.linwancen.plugin.show.settings.AppSettingsState"/>
|
2022-02-13 02:40:11 +08:00
|
|
|
|
|
|
|
|
<projectConfigurable parentId="tools"
|
2022-02-26 03:10:43 +08:00
|
|
|
instance="io.github.linwancen.plugin.show.settings.ProjectSettingsConfigurable"
|
|
|
|
|
id="io.github.linwancen.plugin.show.settings.ProjectSettingsConfigurable"
|
2022-02-13 02:40:11 +08:00
|
|
|
displayName="Show Comment Project"/>
|
2022-02-26 03:10:43 +08:00
|
|
|
<projectService serviceImplementation="io.github.linwancen.plugin.show.settings.ProjectSettingsState"/>
|
2022-02-11 00:23:01 +08:00
|
|
|
</extensions>
|
|
|
|
|
|
|
|
|
|
<actions>
|
|
|
|
|
</actions>
|
|
|
|
|
</idea-plugin>
|