mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2024-11-24 05:42:45 +01:00
85 lines
4.2 KiB
XML
85 lines
4.2 KiB
XML
<idea-plugin url="https://plugins.jetbrains.com/plugin/164" xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
<name>IdeaVim</name>
|
|
<id>IdeaVIM</id>
|
|
<change-notes><![CDATA[
|
|
<ul>
|
|
<li>Support dot command for Surround and Commentary extensions</li>
|
|
<li>Support XDG settings standard</li>
|
|
<li>Add option to remove the status bar icon</li>
|
|
<li>Various bug fixes</li>
|
|
</ul>
|
|
<p>See also the complete <a href="https://github.com/JetBrains/ideavim/blob/master/CHANGES.md">changelog</a>.</p>
|
|
]]></change-notes>
|
|
<description><![CDATA[
|
|
<p>Vim emulation plug-in for IDEs based on the IntelliJ platform.</p>
|
|
<p>IdeaVim supports many Vim features including normal/insert/visual modes, motion keys, deletion/changing, marks, registers, some Ex commands, Vim regexps, configuration via ~/.ideavimrc, macros, window commands, etc.</p>
|
|
<p>See also:</p>
|
|
<ul>
|
|
<li><a href="https://github.com/JetBrains/ideavim">GitHub repository</a>: documentation and contributing</li>
|
|
<li><a href="https://youtrack.jetbrains.com/issues/VIM">Issue tracker</a>: feature requests and bug reports</li>
|
|
</ul>
|
|
]]></description>
|
|
<version>SNAPSHOT</version>
|
|
<vendor>JetBrains</vendor>
|
|
|
|
<!-- Please search for "[VERSION UPDATE]" in project in case you update the since-build version -->
|
|
<!-- Check for [Version Update] tag in YouTrack as well -->
|
|
<idea-version since-build="183.4284.148"/>
|
|
|
|
<!-- Mark the plugin as compatible with RubyMine and other products based on the IntelliJ platform -->
|
|
<depends>com.intellij.modules.lang</depends>
|
|
<resource-bundle xmlns="">messages</resource-bundle>
|
|
|
|
<application-components>
|
|
<component>
|
|
<implementation-class>com.maddyhome.idea.vim.DynamicLoaderStopper</implementation-class>
|
|
</component>
|
|
<component>
|
|
<implementation-class>com.maddyhome.idea.vim.VimPlugin</implementation-class>
|
|
</component>
|
|
<component>
|
|
<implementation-class>com.maddyhome.idea.vim.VimLocalConfig</implementation-class>
|
|
</component>
|
|
</application-components>
|
|
<project-components>
|
|
<component>
|
|
<implementation-class>com.maddyhome.idea.vim.VimProjectComponent</implementation-class>
|
|
</component>
|
|
</project-components>
|
|
|
|
<extensionPoints>
|
|
<extensionPoint name="vimExtension" interface="com.maddyhome.idea.vim.extension.VimExtension"/>
|
|
|
|
<extensionPoint name="vimExCommand" beanClass="com.maddyhome.idea.vim.ex.ExBeanClass" dynamic="true">
|
|
<with attribute="implementation" implements="com.maddyhome.idea.vim.ex.CommandHandler"/>
|
|
</extensionPoint>
|
|
<extensionPoint name="vimAction" beanClass="com.maddyhome.idea.vim.handler.ActionBeanClass" dynamic="true">
|
|
<with attribute="implementation" implements="com.maddyhome.idea.vim.handler.EditorActionHandlerBase"/>
|
|
</extensionPoint>
|
|
</extensionPoints>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<applicationConfigurable groupId="editor" instance="com.maddyhome.idea.vim.ui.VimEmulationConfigurable"/>
|
|
<projectService serviceImplementation="com.maddyhome.idea.vim.group.NotificationService"/>
|
|
<statusBarWidgetProvider implementation="com.maddyhome.idea.vim.StatusBarIconProvider"/>
|
|
</extensions>
|
|
|
|
<xi:include href="/META-INF/includes/ApplicationServices.xml" xpointer="xpointer(/idea-plugin/*)"/>
|
|
|
|
<xi:include href="/META-INF/includes/VimActions.xml" xpointer="xpointer(/idea-plugin/*)"/>
|
|
<xi:include href="/META-INF/includes/VimExCommands.xml" xpointer="xpointer(/idea-plugin/*)"/>
|
|
<xi:include href="/META-INF/includes/VimExtensions.xml" xpointer="xpointer(/idea-plugin/*)"/>
|
|
|
|
<actions>
|
|
<action id="VimPluginToggle" class="com.maddyhome.idea.vim.action.VimPluginToggleAction" text="Vim Emulator" description="Toggle the vim plugin On/off">
|
|
<add-to-group group-id="ToolsMenu" anchor="last"/>
|
|
</action>
|
|
|
|
<!-- Internal -->
|
|
<action id="VimInternalAddInlays" class="com.maddyhome.idea.vim.action.internal.AddInlaysAction" text="Add Test Inlays | IdeaVim Internal" internal="true"/>
|
|
|
|
<action id="VimShortcutKeyAction" class="com.maddyhome.idea.vim.action.VimShortcutKeyAction" text="Shortcuts"/>
|
|
<action id="VimActions" class="com.maddyhome.idea.vim.VimActions" text="Vim Actions"/>
|
|
</actions>
|
|
</idea-plugin>
|