format
This commit is contained in:
parent
66482b8495
commit
607cd7aeff
2
eval.go
2
eval.go
@ -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
2
nav.go
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user