1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-03-04 21:32:52 +01:00

Fixed regression after setChangeMarks() refactoring

This commit is contained in:
Andrey Vlasovskikh 2016-01-26 17:49:05 +03:00
parent 50e3af7b82
commit 2d86054fe8

View File

@ -1485,7 +1485,7 @@ public class ChangeGroup {
if (type != null) {
int start = range.getStartOffset();
VimPlugin.getMark().setMark(editor, MarkGroup.MARK_CHANGE_POS, start);
VimPlugin.getMark().setChangeMarks(editor, range);
VimPlugin.getMark().setChangeMarks(editor, new TextRange(start, start));
}
return true;