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.
|
2022-03-09 03:28:12 +08:00
|
|
|
<li>Show javadoc comments at "xx ClassNameOrSimpleName.json".
|
2022-03-09 23:01:27 +08:00
|
|
|
<li>Config: settings -> Tools -> Show Comment Global/Project
|
2022-03-07 23:58:57 +08:00
|
|
|
</ul>
|
|
|
|
|
Chinese Notes:
|
|
|
|
|
<ul>
|
|
|
|
|
<li>在结构树显示 文档注释。
|
|
|
|
|
<li>在行末尾显示 文档注释。
|
2022-03-09 03:28:12 +08:00
|
|
|
<li>支持 "xx 类全名或简名.json"。
|
2022-03-09 23:01:27 +08:00
|
|
|
<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">
|
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>
|