add missing offset to current highlighting line. Fix #795

This commit is contained in:
tommy 2017-09-02 09:40:35 +01:00
parent 4f2fc096e5
commit 68526dc119

View file

@ -935,7 +935,7 @@ func (v *View) DisplayView() {
if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].CurView == v.Num &&
!v.Cursor.HasSelection() && v.Cursor.Y == realLineN {
for i := lastX; i < xOffset+v.Width; i++ {
for i := lastX; i < xOffset+v.Width-v.lineNumOffset; i++ {
style := GetColor("cursor-line")
fg, _, _ := style.Decompose()
style = style.Background(fg)