This commit is contained in:
Gokcehan 2016-09-02 23:06:25 +03:00
parent 66482b8495
commit 607cd7aeff
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ func (e *SetExpr) eval(app *App, args []string) {
log.Print(msg)
return
}
max := app.ui.wins[0].h/2
max := app.ui.wins[0].h / 2
if n > max {
n = max
}

2
nav.go
View File

@ -263,7 +263,7 @@ func (nav *Nav) down() {
// use a smaller value when the height is even and scrolloff is maxed
// in order to stay at the same row as much as possible while up/down
edge = min(edge, nav.height / 2 + nav.height % 2 - 1)
edge = min(edge, nav.height/2+nav.height%2-1)
dir.pos = min(dir.pos, nav.height-edge-1)
dir.pos = min(dir.pos, maxind)