f586e6dd29
Due to the plugin versions comparision logic in the IntelliJ platform it's impossible to update 0.45-eap-XXX to 0.45. Bumped version once again. |
||
---|---|---|
.idea | ||
doc | ||
gradle/wrapper | ||
resources | ||
src/com/maddyhome/idea/vim | ||
test/org/jetbrains/plugins/ideavim | ||
.gitignore | ||
AUTHORS.md | ||
build.gradle | ||
CHANGES.md | ||
gradle.properties | ||
gradlew | ||
gradlew.bat | ||
index.txt | ||
LICENSE.txt | ||
README.md |
IdeaVim
IdeaVim is a Vim emulation plugin for IDEs based on the IntelliJ platform. IdeaVim can be used with IntelliJ IDEA, RubyMine, PyCharm, PhpStorm, WebStorm, AppCode, CLion, DataGrip and Android Studio.
Resources:
Installation
Use the IDE's plugin manager to install the latest version of the plugin. Start the IDE normally and enable the Vim emulation using "Tools | Vim Emulator" menu item. At this point you must use Vim keystrokes in all editors.
If you wish to disable the plugin, select the "Tools | Vim Emulator" menu so it is unchecked. At this point your IDE will work with its regular keyboard shortcuts.
Keyboard shortcut conflicts between the Vim emulation and the IDE can be resolved via "File | Settings | Vim Emulation", "File | Settings | Keymap" and key mapping commands in your ~/.ideavimrc file.
Get an Early Access
Would you like to try new features and fixes? Join the Early Access Program and receive EAP builds as updates! Add this URL to "Settings | Plugins | Browse Repositories | Manage Repositories": https://plugins.jetbrains.com/plugins/eap/ideavim
See the changelog for the list of hot unreleased features.
It is important to distinguish EAP from traditional pre-release software. Please note that the quality of EAP versions may at times be way below even usual beta standards.
Summary of Supported Vim Features
Supported:
- Motion keys
- Deletion/changing
- Insert mode commands
- Marks
- Registers
- Undo/redo
- Visual mode commands
- Some Ex commands
- Some :set options
- Full Vim regexps for search and search/replace
- Key mappings
- Macros
- Digraphs
- Command line and search history
- Window commands
- Vim web help
Emulated Vim plugins:
- vim-surround
Not supported (yet):
- Jump lists
- Various less used commands
See also:
Files
- ~/.ideavimrc
- Your IdeaVim-specific Vim initialization commands
You can read your ~/.vimrc file from ~/.ideavimrc using this command:
source ~/.vimrc
Note, that IdeaVim currently parses ~/.ideavimrc file via simple pattern matching, see VIM-669 for proper parsing of VimL files.
Also note that if you have overridden the user.home
JVM option, this
will affect where IdeaVim looks for your .ideavimrc file. For example, if you
have -Duser.home=/my/alternate/home
then IdeaVim will source
/my/alternate/home/.ideavimrc
instead of ~/.ideavimrc
.
Emulated Vim Plugins
IdeaVim extensions emulate some plugins of the original Vim. In order to use IdeaVim extensions, you have to enable them via this command in your ~/.ideavimrc:
set <extension-name>
Available extensions:
- surround
- Emulates vim-surround
- Commands:
ys
,cs
,ds
,S
Changes to the IDE
Undo/Redo
The IdeaVim plugin uses the undo/redo functionality of the IntelliJ platform,
so the behaviour of the u
and <C-R>
commands may differ from the original
Vim. Vim compatibility of undo/redo may be improved in future releases.
See also unresolved undo issues.
Escape
Using <Esc>
in dialog windows remains problematic. For most dialog windows
the Vim emulator is put into the insert mode with <Esc>
not working. You
should use <C-c>
or <C-[>
instead. In some dialog windows the normal mode is
on by default. The usage of the Vim emulator in dialog windows is an area for
improvements.
See also unresolved escape issues.
Executing IDE Actions
IdeaVim adds two commands for listing and executing arbitrary IDE actions as
Ex commands or via :map
command mappings:
:actionlist [pattern]
- Find IDE actions by name pattern
:action {name}
- Execute an action named
NAME
- Execute an action named
For example, here \r
is mapped to the Reformat Code action:
:map \r :action ReformatCode<CR>
Contributing
Where to Start
In order to contribute to IdeaVim you should have some understanding of Java.
See also these docs on the IntelliJ API:
You can start by picking relatively simple tasks that are tagged with #patch_welcome in the issue tracker.
Development Environment
-
Fork IdeaVim on GitHub and clone the repository on your local machine.
-
Import the project from existing sources in IntelliJ IDEA 15+ (Community or Ultimate) using "File | New | Project from Existing Sources..." or "Import Project" from the start window.
-
In the project wizard select "Import project from external model | Gradle"
-
Select your Java 6+ JDK as the Gradle JVM, leave other parameters unchanged
-
-
Create a new plugin run configuration using "Run | Edit Configurations | New Gradle Configuration" and run it in order to launch IntelliJ with the compiled version of the IdeaVim plugin.
-
Select your project as the Gradle project
-
Enter "runIdea" as the task to run
-
-
Create and run a new configuration for running tests by right-clicking on the "test" folder in the project structure and selecting "Run All Tests".
-
Build the plugin distribution by running
./gradlew clean buildPlugin
in the terminal in your project root.-
The resulting distribution file is build/distributions/IdeaVim-VERSION.zip
-
You can install this file using "Settings | Plugins | Install plugin from disk"
-
Authors
See AUTHORS.md for a list of authors and contributors.
License
IdeaVim is licensed under the terms of the GNU Public license version 2.