mirror of
https://github.com/Hopiu/micro.git
synced 2026-04-10 17:40:59 +00:00
Minor fix
This commit is contained in:
parent
f0faeb3a3e
commit
f0b6725000
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ func (l Loc) Move(n int, buf *Buffer) Loc {
|
|||
}
|
||||
return l
|
||||
}
|
||||
for i := 0; i < n; i++ {
|
||||
for i := 0; i < Abs(n); i++ {
|
||||
return l.left(buf)
|
||||
}
|
||||
return l
|
||||
|
|
|
|||
Loading…
Reference in a new issue