1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-08-02 09:59:07 +02:00

Set isChange to true when calling deleteRange from ctrl-w handler

This commit is contained in:
Dathan Bennett 2014-09-06 01:07:03 -07:00
parent 3750417323
commit 8d7bf2661a

View File

@ -323,7 +323,7 @@ public class ChangeGroup {
return false;
}
final TextRange range = new TextRange(deleteTo, editor.getCaretModel().getOffset());
deleteRange(editor, range, SelectionType.CHARACTER_WISE, false);
deleteRange(editor, range, SelectionType.CHARACTER_WISE, true);
return true;
}