Relocate after rune insert

Fixes #1510
This commit is contained in:
Zachary Yedidia
2020-02-14 15:52:20 -05:00
parent 00006aa2b4
commit db32b84cd1
2 changed files with 2 additions and 1 deletions

View File

@@ -458,6 +458,7 @@ func (h *BufPane) DoRuneInsert(r rune) {
if recording_macro {
curmacro = append(curmacro, r)
}
h.Relocate()
h.PluginCBRune("onRune", r)
}
}