mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2024-11-24 14:42:44 +01:00
145 lines
8.9 KiB
XML
145 lines
8.9 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>
|
|
<h3>Features:</h3>
|
|
<br/>
|
|
<ul><li>Ability to map IDE actions via the <code>&lt;Action&gt;</code> keyword. E.g.
|
|
<code>map &lt;C-K&gt; &lt;Action&gt;(CommentByLineComment)</code>.
|
|
Check out <code>README.md</code> for the details.</li><li><code>IdeaVim: track action
|
|
Ids</code> command to find action ids for the <code>:action</code> command.
|
|
Enable this option in &quot;Search everywhere&quot; (double shift).</li><li>Ability to enable
|
|
extensions using <code>vim-plug</code> or <code>vundle</code> syntax.<br />
|
|
E.g. to enable commentary extension you can use one of the following commands:<pre><code
|
|
class="language-vim">set commentary
|
|
Plug 'tpope/vim-commentary'
|
|
Plug 'https://github.com/tpope/vim-commentary'
|
|
Plugin 'tpope/vim-commentary'
|
|
...
|
|
</code></pre><p>This approach is especially handy if you have <code>.vimrc</code> with
|
|
plugins registered via <code>vim-plug</code> or <code>vundle</code>.</p></li></ul>
|
|
|
|
|
|
<br/>
|
|
<h3>Changes:</h3>
|
|
<br/>
|
|
<ul><li>Fix <code>&lt;Esc&gt;</code> for dialogs. Now <code>&lt;Esc&gt;</code>
|
|
will exit insert / visual mode and close the dialog from normal mode.</li><li>Add option to disable
|
|
IdeaVim in dialogs / single line editors. <a href="https://youtrack.jetbrains.com/issue/VIM-765">VIM-765</a><br
|
|
/>
|
|
Use <code>set ideavimsupport=</code> to disable IdeaVim in dialog editors. </li><li>Reposition
|
|
cursor when <code>scrolloff</code> changes</li></ul>
|
|
|
|
<br/>
|
|
<h3>Fixes:</h3>
|
|
<br/>
|
|
<ul><li><a href="https://youtrack.jetbrains.com/issue/VIM-2150">VIM-2150</a> <code>Shift-D</code>
|
|
should not delete an empty line</li><li><a href="https://youtrack.jetbrains.com/issue/VIM-2157">VIM-2157</a>
|
|
Fix tab with an active template</li><li><a href="https://youtrack.jetbrains.com/issue/VIM-2156">VIM-2156</a>
|
|
Correct up/down motions with inlays</li><li><a href="https://youtrack.jetbrains.com/issue/VIM-2144">VIM-2144</a>
|
|
Correct text position after block insert with inlays</li><li><a
|
|
href="https://youtrack.jetbrains.com/issue/VIM-2158">VIM-2158</a> Fix scrolling when <code>scrolloff</code>
|
|
is over half screen height, but less than full height</li></ul>
|
|
<br/>
|
|
<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 plugin for IntelliJ Platform-based IDEs.</p>
|
|
<br/>
|
|
<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, Vim plugins, etc.</p>
|
|
<br/>
|
|
<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="201.5985.32"/>
|
|
|
|
<!-- 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>
|
|
</application-components>
|
|
|
|
<extensionPoints>
|
|
<extensionPoint name="vimExtension" beanClass="com.maddyhome.idea.vim.extension.ExtensionBeanClass" dynamic="true">
|
|
<with attribute="implementation" implements="com.maddyhome.idea.vim.extension.VimExtension"/>
|
|
|
|
</extensionPoint>
|
|
|
|
<!-- For internal use only -->
|
|
<extensionPoint name="vimExCommand" beanClass="com.maddyhome.idea.vim.ex.ExBeanClass" dynamic="true">
|
|
<with attribute="implementation" implements="com.maddyhome.idea.vim.ex.CommandHandler"/>
|
|
</extensionPoint>
|
|
<!-- For internal use only -->
|
|
<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"/>
|
|
<statusBarWidgetFactory implementation="com.maddyhome.idea.vim.ui.StatusBarIconFactory"/>
|
|
<statusBarWidgetFactory implementation="com.maddyhome.idea.vim.ui.ShowCmdStatusBarWidgetFactory" order="first"/>
|
|
|
|
<applicationService serviceImplementation="com.maddyhome.idea.vim.config.VimLocalConfig"/>
|
|
<applicationService serviceImplementation="com.maddyhome.idea.vim.VimPlugin"/>
|
|
|
|
<!-- Initialise as early as possible so that we're ready to edit quickly. This is especially important for Rider,
|
|
which (at least for 2020.1) has some long running activities that block other startup extensions. None of the
|
|
core platform activities have IDs, so we can't use "before ID". We have to use "first" -->
|
|
<postStartupActivity implementation="com.maddyhome.idea.vim.PluginStartup" order="first"/>
|
|
|
|
<editorFloatingToolbarProvider implementation="com.maddyhome.idea.vim.ui.ReloadFloatingToolbar"/>
|
|
</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/*)"/>
|
|
<xi:include href="/META-INF/includes/VimListeners.xml" xpointer="xpointer(/idea-plugin/*)"/>
|
|
|
|
<actions>
|
|
<action id="VimPluginToggle" class="com.maddyhome.idea.vim.action.VimPluginToggleAction">
|
|
<add-to-group group-id="ToolsMenu" anchor="last"/>
|
|
</action>
|
|
|
|
<!-- Internal -->
|
|
<action id="VimInternalAddBlockInlays" class="com.maddyhome.idea.vim.action.internal.AddBlockInlaysAction" text="Add Test Block Inlays | IdeaVim Internal" internal="true"/>
|
|
<action id="VimInternalAddInlineInlays" class="com.maddyhome.idea.vim.action.internal.AddInlineInlaysAction" text="Add Test Inline Inlays | IdeaVim Internal" internal="true"/>
|
|
|
|
<action id="VimShortcutKeyAction" class="com.maddyhome.idea.vim.action.VimShortcutKeyAction"/>
|
|
<action id="VimActions" class="com.maddyhome.idea.vim.ui.VimActions"/>
|
|
|
|
<!-- [Version Update] 202+ use-shortcut-of="ExternalSystem.ProjectRefreshAction" -->
|
|
<group id="IdeaVim.ReloadVimRc.group" class="com.maddyhome.idea.vim.ui.ReloadFloatingToolbarActionGroup">
|
|
<action id="IdeaVim.ReloadVimRc.reload" class="com.maddyhome.idea.vim.ui.ReloadVimRc">
|
|
<keyboard-shortcut first-keystroke="control shift O" keymap="$default"/>
|
|
<keyboard-shortcut first-keystroke="control shift O" keymap="Eclipse" remove="true"/>
|
|
<keyboard-shortcut first-keystroke="control shift O" keymap="NetBeans 6.5" remove="true"/>
|
|
<keyboard-shortcut first-keystroke="control shift O" keymap="Visual Studio" remove="true"/>
|
|
<keyboard-shortcut first-keystroke="meta shift O" keymap="Mac OS X" replace-all="true"/>
|
|
<keyboard-shortcut first-keystroke="meta shift O" keymap="Eclipse (Mac OS X)" replace-all="true" remove="true"/>
|
|
<keyboard-shortcut first-keystroke="meta shift O" keymap="Xcode" replace-all="true" remove="true"/>
|
|
<keyboard-shortcut first-keystroke="meta shift I" keymap="Mac OS X 10.5+" replace-all="true"/>
|
|
</action>
|
|
</group>
|
|
|
|
<action id="VimFindActionIdAction"
|
|
class="com.maddyhome.idea.vim.listener.FindActionIdAction" text="IdeaVim: Track Action Ids"
|
|
description="Starts tracking ids of executed actions"/>
|
|
</actions>
|
|
</idea-plugin>
|