Merge pull request #796 from tommyshem/remove-offset

missing line number offset to current line highlighting for loop. Fix #795
This commit is contained in:
Zachary Yedidia 2017-09-02 10:30:39 -04:00 committed by GitHub
commit 4fcdde4149

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)