• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!--
2  Copyright (c) 2023 Shenzhen Kaihong Digital Industry Development Co., Ltd.
3  Licensed under the Apache License, Version 2.0 (the "License");
4  you may not use this file except in compliance with the License.
5  You may obtain a copy of the License at
6
7  http://www.apache.org/licenses/LICENSE-2.0
8
9  Unless required by applicable law or agreed to in writing, software
10  distributed under the License is distributed on an "AS IS" BASIS,
11  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  See the License for the specific language governing permissions and
13  limitations under the License.
14-->
15<idea-plugin>
16    <id>com.kh.tools.ng</id>
17    <name>Assist Tools</name>
18    <version>1.0</version>
19    <vendor email="zhaojunxia@kaihong.com" url="http://kaihong.com/">深圳开鸿数字产业发展有限公司</vendor>
20
21    <idea-version since-build="113.0"/>
22
23    <depends>com.intellij.modules.lang</depends>
24    <depends>com.sk.ng</depends>
25    <depends>com.sk.ts</depends>
26
27    <extensions defaultExtensionNs="com.intellij">
28    </extensions>
29
30    <actions>
31        <!-- Add your actions here -->
32        <group id="AssistTools" text="Assist Tools" >
33            <add-to-group group-id="ToolsMenu" anchor="last" />
34        </group>
35
36        <action class="com.kh.tools.ng.AssistCenterMenu" id="assisttoolsGen" text="Assist Tools">
37            <add-to-group group-id="AssistTools" anchor="last" />
38            <keyboard-shortcut keymap="$default" first-keystroke="shift alt A"/>
39        </action>
40
41    </actions>
42
43</idea-plugin>