Advertisement
bekovski

Untitled

Nov 26th, 2018
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.39 KB | None | 0 0
  1. <idea-plugin>
  2.     <id>com.bekiroe.html-format</id>
  3.     <name>Plugin display name here</name>
  4.     <vendor email="support@yourcompany.com" url="http://www.yourcompany.com">YourCompany</vendor>
  5.  
  6.     <description><![CDATA[
  7.    Enter short description for your plugin here.<br>
  8.    <em>most HTML tags may be used</em>
  9.    ]]></description>
  10.  
  11.     <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
  12.         on how to target different products -->
  13.     <!-- uncomment to enable plugin in all products
  14.    <depends>com.intellij.modules.lang</depends>
  15.    -->
  16.  
  17.     <extensions defaultExtensionNs="com.intellij">
  18.         <!-- Add your extensions here -->
  19.         <toolWindow factoryClass="MyToolWindowFactory"
  20.                    id="HTML"
  21.                    anchor="right"
  22.                    secondary="true"/>
  23.  
  24.         <fileEditorProvider implementation="MyFileEditorProvider"
  25.                            id="My File Editor Provider"/>
  26.     </extensions>
  27.  
  28.     <actions>
  29.         <!-- Add your actions here -->
  30.         <action class="HtmlEditorAction"
  31.                id="Html Editor"
  32.                text="Open HTML Editor"
  33.                description="Opens a new Editor tab which displays its contents in HTML format">
  34.             <add-to-group group-id="EditorPopupMenu" anchor="last"/>
  35.         </action>
  36.     </actions>
  37. </idea-plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement