1.2 Add end-of-line comment class prefix filter settings | 添加行末注释类前缀过滤配置

This commit is contained in:
林万程
2022-02-13 02:40:11 +08:00
parent 7e2ee9f36a
commit 452101843c
14 changed files with 492 additions and 35 deletions

View File

@@ -6,13 +6,22 @@
<description><![CDATA[
English Note:
<ul>
<li>Show javadoc comments for calling methods at the end of the line.
<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.
</ul>
Chinese Note:
<ul>
<li>在行末显示调用方法的文档注释。
<li>在结构树显示文档注释。
<li>在结构树显示 当前节点 的文档注释。
<li>在行末尾显示 调用方法 的文档注释。
<li>可以在设置中 关闭 上面其中一个功能。
<li>可以在设置中 修改 行末注释的颜色。
<li>可以在设置中 修改 行末注释类前缀过滤。
</ul>
]]></description>
@@ -28,8 +37,14 @@
<applicationConfigurable parentId="tools"
instance="io.github.linwancen.plugin.comment.settings.AppSettingsConfigurable"
id="io.github.linwancen.plugin.comment.settings.AppSettingsConfigurable"
displayName="Show Comment"/>
displayName="Show Comment Global"/>
<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"/>
</extensions>
<actions>