The Emacs wrap-search Package
- Non incremental search, i.e. no immediate display of search results as the user types the search query
- Useful when you know what you are looking for and do not want to be distracted by intermediate matches
- Automatic wrapped search
- Useful with large documents when you know exactly what you are searching for
- You do not have to think about whether you want to search up or down
- Great for quick navigation
(global-set-key "\C-s" #'wrap-search)
(global-set-key "\C-r" #'wrap-search-again)
https://elpa.gnu.org/packages/wrap-search.html
Return to Home