ace-isearch
ace-isearch copied to clipboard
A seamless bridge between isearch, ace-jump-mode, avy, and helm-swoop.
This way, when an isearch "upgrades" to an ace-isearch, I can still press `C-s` to the next occurrence as I would have with just `isearch`.
This mechanism of choosing a search function based on the query string could easily work with other search functions. Could you remove the `user-error` checks that require specific libraries? It...
## Reproduction Config: ```elisp (use-package ace-isearch :ensure t :config (global-ace-isearch-mode +1) (custom-set-variables '(ace-isearch-input-length 2) '(ace-isearch-jump-delay 0.15) '(ace-isearch-function 'avy-goto-word-1) '(ace-isearch-use-jump 'printing-char) '(ace-isearch-function-from-isearch 'ace-isearch-swiper-from-isearch))) ``` - Execute `isearch-forward` with more than 1...
The behaviour I want to achieve is for the initial mode to be avy-goto-char-timer which will allow me to specify a variable number of chars to jump to. However, I...
I have the following in my Straight config that should start ace-isearch at startup. Indeed, the configuration says global-ace-isearch-mode is on, but it isn't working (in buffers of any type)...
`isearch-forward-regex` and `helm-swoop` all support regex research in Emacs, so might this be a good feature?
I add a new layer for my spacemacs, which include ace-isearch. And i add ace-jump-mode in exclude-package in spacemacs's configuration, but it warning me always that i need to install...
Ace-isearch works well with isearch for me. Reverse isearch has a problem though. There is no delay switching to ace jump, which means I cant isearch backwards at all.
(Using the latest packages of ace-isearch and helm-swoop on Emacs 24.4.) If I narrow a buffer using C-x n n (narrow-to-region), ace-isearch gets quite confused and doesn't display the proper...