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

47 lines
2.1 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[
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".
<li>Config: settings -> Tools -> Show Comment Global/Project
2022-03-07 23:58:57 +08:00
</ul>
Chinese Notes:
<ul>
<li>在结构树显示 文档注释。
<li>在行末尾显示 文档注释。
<li>支持 "xx 类全名或简名.json"。
<li>修改配置:设置 -> 工具 -> Show Comment Global/Project
2022-03-07 23:58:57 +08:00
</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">
<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"
instance="io.github.linwancen.plugin.show.settings.AppSettingsConfigurable"
id="io.github.linwancen.plugin.show.settings.AppSettingsConfigurable"
displayName="Show Comment Global"/>
<applicationService serviceImplementation="io.github.linwancen.plugin.show.settings.AppSettingsState"/>
<projectConfigurable parentId="tools"
instance="io.github.linwancen.plugin.show.settings.ProjectSettingsConfigurable"
id="io.github.linwancen.plugin.show.settings.ProjectSettingsConfigurable"
displayName="Show Comment Project"/>
<projectService serviceImplementation="io.github.linwancen.plugin.show.settings.ProjectSettingsState"/>
2022-02-11 00:23:01 +08:00
</extensions>
<actions>
</actions>
</idea-plugin>