Files
show-comment/src/main/resources/META-INF/plugin.xml

52 lines
2.5 KiB
XML
Raw Normal View History

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[
English Note:
<ul>
<li>Show javadoc comments in the Project view Tree structure.
<li>Show javadoc comments for calling methods at the end of the line.
<li>One of the above features<br>
can be turned off in the settings -> Tools -> Show Comment Global.
<li>The color of end-of-line comments<br>
can be modified in the settings -> Tools -> Show Comment Global.
<li>End-of-line comment class prefix filter<br>
can be modified in settings -> Tools -> Show Comment Project.
2022-02-11 00:23:01 +08:00
</ul>
Chinese Note:
<ul>
<li>在结构树显示 当前节点 的文档注释。
<li>在行末尾显示 调用方法 的文档注释。
<li>可以在设置中 关闭 上面其中一个功能。
<li>可以在设置中 修改 行末注释的颜色。
<li>可以在设置中 修改 行末注释类前缀过滤。
2022-02-11 00:23:01 +08:00
</ul>
]]></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">
<editor.linePainter implementation="io.github.linwancen.plugin.comment.LineEnd" />
<projectViewNodeDecorator implementation="io.github.linwancen.plugin.comment.Tree"/>
<applicationConfigurable parentId="tools"
instance="io.github.linwancen.plugin.comment.settings.AppSettingsConfigurable"
id="io.github.linwancen.plugin.comment.settings.AppSettingsConfigurable"
displayName="Show Comment Global"/>
2022-02-11 00:23:01 +08:00
<applicationService serviceImplementation="io.github.linwancen.plugin.comment.settings.AppSettingsState"/>
<projectConfigurable parentId="tools"
instance="io.github.linwancen.plugin.comment.settings.ProjectSettingsConfigurable"
id="io.github.linwancen.plugin.comment.settings.ProjectSettingsConfigurable"
displayName="Show Comment Project"/>
<projectService serviceImplementation="io.github.linwancen.plugin.comment.settings.ProjectSettingsState"/>
2022-02-11 00:23:01 +08:00
</extensions>
<actions>
</actions>
</idea-plugin>