mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-08-19 13:24:56 +02:00
Compare commits
5 Commits
0.64.2-EAP
...
1
Author | SHA1 | Date | |
---|---|---|---|
bcf9f53a40 | |||
b824d0d6b3 | |||
4ec0cb9ee0 | |||
![]() |
cd5c4247a6 | ||
![]() |
d1e1692581 |
@@ -10,10 +10,6 @@ The original author:
|
|||||||
|
|
||||||
The current maintainers:
|
The current maintainers:
|
||||||
|
|
||||||
* [![icon][mail]](mailto:andrey.vlasovskikh@gmail.com)
|
|
||||||
[![icon][github]](https://github.com/vlasovskikh)
|
|
||||||
|
|
||||||
Andrey Vlasovskikh
|
|
||||||
* [![icon][mail]](mailto:alexpl292@gmail.com)
|
* [![icon][mail]](mailto:alexpl292@gmail.com)
|
||||||
[![icon][github]](https://github.com/AlexPl292)
|
[![icon][github]](https://github.com/AlexPl292)
|
||||||
|
|
||||||
@@ -25,8 +21,13 @@ Previous maintainers:
|
|||||||
[![icon][github]](https://github.com/olegs)
|
[![icon][github]](https://github.com/olegs)
|
||||||
|
|
||||||
Oleg Shpynov
|
Oleg Shpynov
|
||||||
|
* [![icon][mail]](mailto:andrey.vlasovskikh@gmail.com)
|
||||||
|
[![icon][github]](https://github.com/vlasovskikh)
|
||||||
|
|
||||||
|
Andrey Vlasovskikh
|
||||||
|
|
||||||
Contributors:
|
Contributors:
|
||||||
|
|
||||||
* [![icon][mail]](mailto:yole@jetbrains.com)
|
* [![icon][mail]](mailto:yole@jetbrains.com)
|
||||||
[![icon][github]](https://github.com/yole)
|
[![icon][github]](https://github.com/yole)
|
||||||
|
|
||||||
|
@@ -31,7 +31,7 @@ usual beta standards.
|
|||||||
### Fixes:
|
### Fixes:
|
||||||
* [VIM-2202](https://youtrack.jetbrains.com/issue/VIM-2202) Fix macro recording for ex command and search
|
* [VIM-2202](https://youtrack.jetbrains.com/issue/VIM-2202) Fix macro recording for ex command and search
|
||||||
* [VIM-1799](https://youtrack.jetbrains.com/issue/VIM-1799)
|
* [VIM-1799](https://youtrack.jetbrains.com/issue/VIM-1799)
|
||||||
[VIM-1794](https://youtrack.jetbrains.com/issue/VIM-179a)
|
[VIM-1794](https://youtrack.jetbrains.com/issue/VIM-1794)
|
||||||
Special characters are not interpreted on yanking
|
Special characters are not interpreted on yanking
|
||||||
* [VIM-2218](https://youtrack.jetbrains.com/issue/VIM-2218) Fix some shortcuts for 2021.+
|
* [VIM-2218](https://youtrack.jetbrains.com/issue/VIM-2218) Fix some shortcuts for 2021.+
|
||||||
* [VIM-2217](https://youtrack.jetbrains.com/issue/VIM-2217) Fix adding new line at the end of the file for the AppCode
|
* [VIM-2217](https://youtrack.jetbrains.com/issue/VIM-2217) Fix adding new line at the end of the file for the AppCode
|
||||||
|
@@ -1,9 +1,9 @@
|
|||||||
# suppress inspection "UnusedProperty" for whole file
|
# suppress inspection "UnusedProperty" for whole file
|
||||||
|
|
||||||
ideaVersion=LATEST-EAP-SNAPSHOT
|
ideaVersion=2020.2
|
||||||
downloadIdeaSources=true
|
downloadIdeaSources=true
|
||||||
instrumentPluginCode=true
|
instrumentPluginCode=true
|
||||||
version=SNAPSHOT
|
version=chylex
|
||||||
javaVersion=1.8
|
javaVersion=1.8
|
||||||
kotlinVersion=1.3.71
|
kotlinVersion=1.3.71
|
||||||
publishUsername=username
|
publishUsername=username
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
<idea-plugin url="https://plugins.jetbrains.com/plugin/164" xmlns:xi="http://www.w3.org/2001/XInclude">
|
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||||
<name>IdeaVim</name>
|
<name>IdeaVim</name>
|
||||||
<id>IdeaVIM</id>
|
<id>IdeaVIM</id>
|
||||||
<change-notes><![CDATA[
|
<change-notes><![CDATA[
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
<li><a href="https://youtrack.jetbrains.com/issues/VIM">Issue tracker</a>: feature requests and bug reports</li>
|
<li><a href="https://youtrack.jetbrains.com/issues/VIM">Issue tracker</a>: feature requests and bug reports</li>
|
||||||
</ul>
|
</ul>
|
||||||
]]></description>
|
]]></description>
|
||||||
<version>SNAPSHOT</version>
|
<version>chylex</version>
|
||||||
<vendor>JetBrains</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<!-- Please search for "[VERSION UPDATE]" in project in case you update the since-build version -->
|
<!-- Please search for "[VERSION UPDATE]" in project in case you update the since-build version -->
|
||||||
|
@@ -102,6 +102,10 @@ class VimShortcutKeyAction : AnAction(), DumbAware/*, LightEditCompatible*/ {
|
|||||||
|
|
||||||
if ((keyCode == KeyEvent.VK_TAB || keyCode == KeyEvent.VK_ENTER) && editor.appCodeTemplateCaptured()) return false
|
if ((keyCode == KeyEvent.VK_TAB || keyCode == KeyEvent.VK_ENTER) && editor.appCodeTemplateCaptured()) return false
|
||||||
|
|
||||||
|
if (keyCode == KeyEvent.VK_LEFT || keyCode == KeyEvent.VK_RIGHT) return false
|
||||||
|
if (keyCode == KeyEvent.VK_UP || keyCode == KeyEvent.VK_DOWN) return false
|
||||||
|
if (keyCode == KeyEvent.VK_HOME || keyCode == KeyEvent.VK_END) return false
|
||||||
|
|
||||||
if (editor.inInsertMode) { // XXX: <Tab> won't be recorded in macros
|
if (editor.inInsertMode) { // XXX: <Tab> won't be recorded in macros
|
||||||
if (keyCode == KeyEvent.VK_TAB) {
|
if (keyCode == KeyEvent.VK_TAB) {
|
||||||
VimPlugin.getChange().tabAction = true
|
VimPlugin.getChange().tabAction = true
|
||||||
|
Reference in New Issue
Block a user