Commit Graph
8350 Commits
Author SHA1 Message Date
Alex Plate 726ab3f91b Add test with mouse dragging 2020-11-26 12:12:54 +03:00
Alex Plate ab307dd78f Injecting text instead of typing it 2020-11-26 11:53:07 +03:00
Alex Plate e3079912ae Remove unused handlers 2020-11-26 10:24:22 +03:00
Alex Plate 52da3ed0e4 Update info file 2020-11-26 09:44:48 +03:00
Alex Plate cda85169ea Add new line for ExEditorKit.kt 2020-11-25 17:22:26 +03:00
Alex Plate 978d1df598 Disable internationalization inspections 2020-11-25 17:13:25 +03:00
Alex Plate f90d22cc20 Refactoring of ex actions 2020-11-25 10:49:50 +03:00
Alex Plate bae69d92ae Rename .java to .kt 2020-11-25 10:49:50 +03:00
Alex Plate b910239825 Put ex panels into the separate package 2020-11-25 10:49:50 +03:00
Alex Plate 6421a5969a Update changes 2020-11-25 10:05:43 +03:00
sumoooru2andAlex Pláte 5c9faba7f4 Implement cmap 2020-11-25 10:00:15 +03:00
Alex Plate c1af738cc5 Add another ui test 2020-11-24 12:47:10 +03:00
Alex Plate 23a80a9260 [VIM-2170] Fix alternative range format for s command 2020-11-23 11:49:30 +03:00
Alex Plate d9d92f7eee Add another ui test 2020-11-20 20:18:19 +03:00
Alex Plate c8be6c203e Update intellij plugin version 2020-11-20 12:39:00 +03:00
Alex Plate 612c599d9b Update compatibility a bit 2020-11-20 11:38:22 +03:00
Alex Plate 1292c7d1ae Remove unused import 2020-11-20 11:17:40 +03:00
Alex Plate 69f07967b5 Fix compilation issus for <203 2020-11-20 11:00:29 +03:00
Alex Plate aedd427c07 Optimize imports 2020-11-20 10:45:26 +03:00
Alex Plate 9b6c3dc511 Fix unresolved references 2020-11-20 10:17:52 +03:00
Alex Plate b4fa7f4317 Replace @NlsSafe annotation from utils with our own 2020-11-20 09:58:43 +03:00
Alex Plate f053d305d5 Remove neovim from implementation 2020-11-20 09:35:48 +03:00
Alex Plate 1d95b7ddf7 Move run configurations to the .idea 2020-11-19 16:43:27 +03:00
Alex Plate 01a6964d68 Use neovim for tests only 2020-11-19 11:59:41 +03:00
Alex Plate d661f96a9b Reformat for MessageHelper.kt 2020-11-19 11:26:27 +03:00
Alex Plate c79fae8ab3 [i18n] Mark some strings as @NonNls 2020-11-19 11:22:11 +03:00
Alex Plate 121f130893 Ignore toString localization 2020-11-19 05:55:35 +03:00
Alex Plate da9a0a414a [i18n] Extract more starting for localization 2020-11-19 00:26:17 +03:00
Alex Plate e0732e041b Start with UI tests in the project 2020-11-18 22:03:46 +03:00
Alex Plate 6fc5b3189a [i18n] More extracted strings 2020-11-18 18:49:55 +03:00
Alex Plate 2a0c9cb749 [i18n] Add another file template 2020-11-18 14:22:39 +03:00
Alex Plate 7ad131b448 [i18n] More extracted strings 2020-11-18 13:03:35 +03:00
Alex Plate 3e7186bd60 [i18n] Update @Nls annotations 2020-11-18 13:03:35 +03:00
Alex Plate 132f8cce53 [i18n] Extract more strings 2020-11-18 13:03:35 +03:00
Alex Plate 5c07f42afb Disable unstable api usage inspection 2020-11-18 12:33:51 +03:00
Alex Plate 1f7a2594c8 Convert some strings to properties 2020-11-18 11:26:03 +03:00
Alex Plate ec64d19a36 Update JetBrains annotations 2020-11-18 11:25:39 +03:00
Alex Plate 5cb67470d5 Enable hardcoded string inspection 2020-11-18 11:25:39 +03:00
Alex Plate c03f01a96a Update MessageHelper.kt 2020-11-18 03:09:57 +03:00
Alex Plate 26b67a43ae Fix formatting 2020-11-17 19:55:09 +03:00
Alex Plate a93ca3a205 Support mapclear commands 2020-11-17 19:47:56 +03:00
Alex Plate dcc647ba3c [VIM-1491] Support unmap 2020-11-17 19:38:22 +03:00
Alex Plate fe44f59239 Refactor map handler 2020-11-17 19:36:41 +03:00
Alex Plate 80dba0babf Move MapHandler into the separate package 2020-11-17 19:36:17 +03:00
Yaohui WangandAlex Pláte 34acf9a91e Add CJK characterType for delimiting caret movement
- Add unicode CJK Unified Ideographs type
- Stop caret movement for CJK chars (as VIM does). Similar to VIM-58
2020-11-17 10:21:49 +03:00
Alex Plate cb859dbb7b Add Grzegorz Antoniak to the contributors list 2020-11-17 10:16:13 +03:00
Alex Plate 20c04b1e62 Add Brandon Conway to the contributors list 2020-11-17 10:09:21 +03:00
Alex Plate 69eaf8ed0c Jan Palus was already on the list 2020-11-17 10:09:21 +03:00
Grzegorz AntoniakandAlex Pláte 62c828d722 VIM-1475: Respect the "use block caret" when in insert mode
The "use block caret" IDEA option controls the style of the cursor: when
it's enabled, the cursor is drawn as a block, and when it's disabled,
it's drawn as a bar. However, after installing IdeaVIM, this option
isn't respected; the plugin always uses a block cursor when in command
mode, and always uses a bar cursor when in insert mode.

This commit changes the behavior so that when the "use block caret"
option is enabled, IdeaVIM's insert mode uses a block cursor instead of
a bar cursor. The cursor in normal mode is always drawn as a block
cursor. If the "use block caret" option is disabled, the behavior is the
same as in previous versions of IdeaVIM (block cursor in normal mode,
bar cursor in insert mode).

Fixes VIM-1475 (on YouTrack)
2020-11-17 10:06:32 +03:00
Brandon ConwayandAlex Pláte 251e8e8ff4 Fix typo 2020-11-16 11:20:07 +03:00