fix action description
[idea/community.git] / samples / textEditor / src / META-INF / plugin.xml
1 <idea-plugin version="2">
2   <name>Text Editor</name>
3   <description>This plugin illustrates how to create a simple text editor and work with document files.</description>
4   <version>1.0</version>
5   <vendor>JetBrains</vendor>
6     <!--
7   <idea-version since-build="8000"/>
8     -->
9   <application-components>
10     <!-- Add your application components here -->
11   </application-components>
12
13   <project-components>
14     <!-- Add your project components here -->
15       
16   </project-components>
17
18   <actions>
19     <!-- Add your actions here -->
20       <action id="documentFiles.myActionID" class="myDocumentFiles.MyActionClass" text="Text _Editor"
21               description="Sample custom editor for text files">
22           <add-to-group group-id="FileMenu" anchor="after" relative-to-action="PowerSaveGroup"/>
23           <keyboard-shortcut keymap="$default" first-keystroke="ctrl F10"/>
24       </action>
25   </actions>
26
27   <extensions defaultExtensionNs="com.intellij">
28     <!-- Add your extensions here -->
29   </extensions>
30 </idea-plugin>