evil-visualstar
evil-visualstar copied to clipboard
Start a * or # search from the visual selection
I use [straight.el](https://github.com/raxod502/straight.el) with defer loading, need these auto load for the following config to work: ```elisp (use-package evil-visualstar :defer t :init (define-key evil-visual-state-map (kbd "*") #'evil-visualstar/begin-search-forward) (define-key evil-visual-state-map (kbd...
when `evil-ex-search-vim-style-regexp` is on, triggering on expression including curly brackets, `{` and `}`, cause an error of Invalid regexp: "Invalid content of \\{\\}". This PR resolves such issue.
I'm using https://github.com/bling/evil-visualstar to "shift + 8" to search within a document. It would be awesome if pressing "/" which is bound to counsel-rg grabbed the highlighted term and searched...
Hi, I'd like to know whether there's a way or an interactive function to unhighlight selected one. Could you please let me know?
It's normal in vim/evil-mode for an all lowercase search term to match with case insensitivity, while a search containing a capital letter matches with case sensitivity. When `evil-visualstar/persistent` is set,...
You cannot press # or \* to cycle through all matchs
When evil-search-module is `'isearch` I can search something with visualstar and then press n/p to cycle through the matches like I would expect. When it's set to `'evil-search` though it...