Skip to content

Commit

Permalink
Merge pull request #616 from noborus/fix-paste-missing
Browse files Browse the repository at this point in the history
Fix paste mistakes
  • Loading branch information
noborus authored Sep 1, 2024
2 parents b519ac9 + 878346d commit 2338ced
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions oviewer/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,9 @@ func (root *Root) sendSearchMove(lineNum int) {

// incrementalSearch performs incremental search by setting and input mode.
func (root *Root) incrementalSearch(ctx context.Context) {
if root.Screen.HasPendingEvent() {
return
}
if !root.Config.Incsearch {
return
}
Expand Down

0 comments on commit 2338ced

Please sign in to comment.