Commit Graph
5765 Commits
Author SHA1 Message Date
Alex Plate 770d12d79b [VIM-1913] Enable enter for AppCode templates 2020-12-04 11:05:32 +03:00
Alex Plate 7e4ac22d23 [VIM-1913] Enable tab for AppCode templates 2020-12-04 10:45:56 +03:00
Matt Ellis 4ea7c421a8 Extract and use common Direction enum 2020-12-04 09:53:58 +03:00
Matt Ellis 3c8b7e2de4 Convert SearchHighlightsHelper to Kotlin 2020-12-04 09:53:58 +03:00
Matt Ellis b13acaf823 Rename .java to .kt 2020-12-04 09:53:58 +03:00
Matt Ellis 709cd6ad6e Extract SearchHighlightsHelper 2020-12-04 09:53:58 +03:00
Matt Ellis 1316ccc56f Update default for history to match Vim 2020-12-04 09:53:58 +03:00
Matt Ellis 881ddd0e11 Refactor setting special registers 2020-12-04 09:53:58 +03:00
Matt Ellis 49611ee6b9 Show the correct handler class in :map 2020-12-04 09:33:14 +03:00
Alex Plate 557e47650f Disable octal for nrformats 2020-12-03 10:07:27 +03:00
Alex Plate 7a164d6d5f Updates to block caret in insert mode 2020-12-02 10:58:04 +03:00
Alex Plate 60bc936cd9 Take back: VIM-1475: Respect the "use block caret" when in insert mode 2020-12-02 10:31:01 +03:00
Alex Plate 4926d2554e Revert "VIM-1475: Respect the "use block caret" when in insert mode"
Reverting this commit due to VIM-2182

This reverts commit 62c828d7
2020-12-02 09:45:08 +03:00
Alex Plate eae135acba Fix detekt issues 2020-12-01 12:19:08 +03:00
Alex Plate 8ce3801b87 [VIM-1913] Improve interaction with AppCode templates 2020-12-01 11:55:47 +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 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
sumoooru2 5c9faba7f4 Implement cmap 2020-11-25 10:00:15 +03:00
Alex Plate 23a80a9260 [VIM-2170] Fix alternative range format for s command 2020-11-23 11:49:30 +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 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 da9a0a414a [i18n] Extract more starting for localization 2020-11-19 00:26:17 +03:00
Alex Plate 6fc5b3189a [i18n] More extracted strings 2020-11-18 18:49:55 +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 1f7a2594c8 Convert some strings to properties 2020-11-18 11:26:03 +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 Wang 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
Grzegorz Antoniak 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
Jan Palus 75a1bb7cc5 VIM-2114 Do not override registers when deleting empty range 2020-11-13 12:34:04 +03:00
Jan Palus 2758071d31 VIM-2113 Increase tag range only in visual mode 2020-11-13 11:54:08 +03:00
Alex Plate b6adf9f7a9 Rename ideaenabledbufs to ideavimsupport 2020-11-12 09:45:29 +03:00
Matt Ellis c38b18e16b Prevent inlays causing scrolling to stick 2020-11-12 09:37:55 +03:00
Matt Ellis 8d65c3ed26 Limit how much of an inlay is shown when scrolling 2020-11-12 09:37:55 +03:00