Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add :noh command of vi-mode for turning the isearch's highlight off.
  • Loading branch information
fukamachi committed Aug 13, 2023
commit 56843e137c93180bb25a273b778a46ab7bd09e56
4 changes: 4 additions & 0 deletions extensions/vi-mode/ex-command.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,7 @@
(define-ex-command "^(buffers|ls|files)$" (range argument)
(declare (ignore range argument))
(lem/list-buffers:list-buffers))

(define-ex-command "^noh(?:lsearch)?$" (range argument)
(declare (ignore range argument))
(lem/isearch:isearch-end))