1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-08-17 16:31:45 +02:00

Compare commits

...

1 Commits
0.43 ... 0.44

Author SHA1 Message Date
Andrey Vlasovskikh
0da8625f30 VIM-1040 Fixed typing keys in completion menus and typing with the plugin disabled 2015-11-02 15:53:50 +03:00
4 changed files with 18 additions and 3 deletions

View File

@@ -3,13 +3,24 @@ The Changelog
History of changes in IdeaVim for the IntelliJ platform.
0.44, 2015-11-02
----------------
A bugfix release.
* VIM-1040 Fixed typing keys in completion menus and typing with the
plugin disabled
0.43, 2015-11-02
----------------
A bugfix release.
* VIM-1039 Fixed running the plugin with Java 6
M
0.42, 2015-11-01
----------------

View File

@@ -1,4 +1,4 @@
version-id:0.43
version-id:0.44
platform-version:143.0
idea.download.url=http://download.jetbrains.com/idea/ideaIC-143.380.20.tar.gz
build.number=dev

View File

@@ -2,6 +2,10 @@
<name>IdeaVim</name>
<id>IdeaVIM</id>
<change-notes><![CDATA[
<p>0.44:</p>
<ul>
<li>Fixed typing keys in completion menus and typing with the plugin disabled</li>
</ul>
<p>0.43:</p>
<ul>
<li>Fixed running the plugin with Java 6</li>

View File

@@ -141,7 +141,7 @@ public class VimPlugin implements ApplicationComponent, PersistentStateComponent
});
final TypedAction typedAction = EditorActionManager.getInstance().getTypedAction();
EventFacade.getInstance().setupTypedActionHandler(new VimTypedActionHandler(typedAction.getHandler()));
EventFacade.getInstance().setupTypedActionHandler(new VimTypedActionHandler(typedAction.getRawHandler()));
// Register vim actions in command mode
RegisterActions.registerActions();