Alex Plate
c7948374fd
Cleanup
2020-06-29 13:30:23 +03:00
Alex Plate
f8afdf304b
Use @TestFor instead of custom annotation
2020-06-29 12:21:06 +03:00
Alex Plate
0e7b05e360
Continue cleanup
2020-06-29 10:57:53 +03:00
Alex Plate
5f18e99128
Action is not nullable for Command
2020-06-29 10:49:46 +03:00
Alex Plate
b2e0af587f
Continue code cleanup
2020-06-29 10:42:02 +03:00
Alex Plate
b0b0817668
Code cleanup
2020-06-29 10:29:52 +03:00
Alex Plate
e428b9fa0a
IdeaVim should save to unnamed register, not default one
2020-06-26 10:34:06 +03:00
Alex Plate
e4bbc7b962
Change type of string
2020-06-26 09:27:25 +03:00
Alex Plate
2d1fee0516
Add [version update] marks
2020-06-24 18:17:42 +03:00
Alex Plate
9904de1946
Use fold action names from platform
2020-06-24 17:54:04 +03:00
Alex Plate
583988034b
Fix incompatibility for 202 eap
2020-06-23 09:55:06 +03:00
Rieon Ke
55e553c2a0
add support for putting & editing macros
2020-06-22 22:47:35 +08:00
Alex Plate
ca15c60d52
Remove the ability to download EAP from notification (access to plugin download mechanism was restricted)
2020-06-22 11:16:43 +03:00
Alex Pláte
8be075b36a
Merge pull request #239
...
Use new API for relative line numbers
2020-06-22 11:16:30 +03:00
Matt Ellis
5d95917727
Do not add line numbers when caret moves
...
Fixes VIM-2021
2020-06-20 19:00:59 +01:00
Alex Plate
a53b67f0ef
Add option to disable IdeaVim in dialogs
2020-06-20 18:20:27 +03:00
Matt Ellis
eff13180b3
Update to new line number API
...
Fixes VIM-1934, fixes VIM-1852
2020-06-19 23:51:46 +01:00
Alex Plate
354aec4713
Disable IdeaVim in database table cells
2020-06-19 18:55:49 +03:00
Alex Plate
d2acb88dd4
Add experimental options to disable IdeaVim in one-line editors and enable escape in dialogs
2020-06-19 16:46:37 +03:00
Alex Plate
e96ece23b8
Add strictMode to enable additional checks in dev mode
2020-06-19 09:45:46 +03:00
Alex Plate
a3a3db9bc8
Extract ListenerSuppressor from ListenerManager
2020-06-19 09:29:49 +03:00
Alex Plate
c350650f9c
Commands work on the last line
2020-06-09 03:41:38 +03:00
Alex Plate
786b7193d0
getLineCount does now respect last new line character
2020-06-09 03:04:48 +03:00
Alex Plate
2a6acba07f
S is now a synonym of cc and doesn't have a separate logic
2020-06-09 03:01:45 +03:00
Alex Plate
e5a5d112ca
Deprecate getFileSize method
2020-06-07 20:47:15 +03:00
Alex Plate
9e2cfe548b
[WIP] Removing usages of deprecated getFileSize
2020-06-07 19:50:32 +03:00
Alex Plate
f4d595f5c2
[WIP] Removing usages of deprecated getFileSize for SearchHelper
2020-06-07 19:42:01 +03:00
Alex Plate
c1e5b7d111
Remove deprecated usage in different files
2020-06-07 19:35:25 +03:00
Alex Plate
1eccc60cb3
Remove deprecated usage in moveTextHandler
2020-06-07 19:19:29 +03:00
Alex Plate
9f8095ae52
Formatting for MoveTextHandler.kt
2020-06-07 19:17:19 +03:00
Alex Plate
3674cf4aad
[WIP] Removing usages of deprecated getFileSize for MotionGroup
2020-06-07 19:17:05 +03:00
Alex Plate
6b0d2157c8
[WIP] Removing usages of deprecated getFileSize for go
command
2020-06-07 19:06:04 +03:00
Alex Plate
5a629d6256
[WIP] Removing usages of deprecated getFileSize in getting file info
2020-06-07 18:37:15 +03:00
Alex Plate
b8909f97aa
[WIP] Removing usages of depracated getFileSize
2020-06-07 14:13:07 +03:00
Alex Plate
8c83ed6b55
Remove usage of deprecated getFileSize
2020-06-06 18:24:24 +03:00
Alex Plate
b161346171
Trying to get rid of getFileSize with allowEnd
2020-06-06 18:07:15 +03:00
Alex Plate
330e717518
Fix offset bounds
2020-06-04 10:24:18 +03:00
Alex Plate
dafc031ef6
Add checks for selectWord
2020-06-04 10:03:43 +03:00
Alex Plate
b00a2d3b79
Do not get findManager for nullable project
...
Fixes EA-231806
2020-06-04 09:36:53 +03:00
Alex Plate
c64ec34a1f
Fix let mapleader="\<SPACE>"
2020-06-03 11:42:39 +03:00
Alex Plate
8ed709c7bb
Use different file for storing local configs
2020-06-03 11:14:37 +03:00
Alex Plate
8e8e52c6f9
Create configuration migrators for IdeaVim
2020-06-03 11:05:48 +03:00
Alex Plate
f3e806c4a6
Create config package
2020-05-28 11:14:53 +03:00
Alex Plate
5f28a22666
Notes about unsupported features of exchange plugin
2020-05-22 15:06:20 +03:00
Alex Plate
98aee5d0ab
Fixes and more tests for vim exchange
2020-05-22 09:59:53 +03:00
Alex Plate
7203cc5cb3
Revert "Remove dynamic loader stopper"
...
This reverts commit 03493e23
2020-05-15 09:48:41 +03:00
Alex Plate
028423cf58
Make exchange extension repeatable
2020-05-14 10:37:37 +03:00
Alex Plate
2ead6af96a
Fix visual operator with dot command
2020-05-14 10:37:16 +03:00
Adrià Farrés
660b243056
Reset operator-pending commands on escape
...
Suppose we have the text "|Hello, world", with | being the position of
the cursor. Pressing `d<Esc>dw` simply moves the cursor on top of the
comma instead of leaving the text as ", world".
This fixes issue VIM-1421.
2020-05-13 05:03:49 +02:00
Alex Plate
c85f41e65b
Fix tests
2020-05-12 10:43:04 +03:00