Skip to content

Commit

Permalink
Merge pull request #5 from panpaul/master
Browse files Browse the repository at this point in the history
Fix typo for 'prev line' functionality
  • Loading branch information
ento authored Jun 3, 2024
2 parents a179a67 + 8f89a78 commit 8a8cc61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ var Keybindings = [
keys: 'k',
effect: 'prev line',
callback: function() {
State.startLine = Math.max(0, State.startine - 1)
State.startLine = Math.max(0, State.startLine - 1)
render()
},
options: 'repeatable'
Expand Down

0 comments on commit 8a8cc61

Please sign in to comment.