historian.el icon indicating copy to clipboard operation
historian.el copied to clipboard

:books: Persistently store selected minibuffer candidates

Results 3 historian.el issues
Sort by recently updated
recently updated
newest added

On Ubuntu 20.04.2 LTS, I installed `historian.el` with use-package as follows: ```emacs-lisp (use-package historian) (use-package ivy-historian) (use-package ivy :diminish ivy-mode :init (ivy-mode +1) (historian-mode +1) :config (ivy-historian-mode +1) (setq ivy-historian-recent-boost...

After a recent upgrade, including the line ``` (ivy-historian-mode 1) ``` prevents me from ever executing a command with enter via an `ivy` interface. Any time I try this, eg...

I tried ``` (setq gnus-completing-read-function ; based on gnus-ido-completing-read (defun gnus-ivy-completing-read (prompt collection &optional require-match initial-input history def) "Call `ivy-completing-read-function'." (ivy-completing-read prompt collection nil require-match initial-input history def))) (use-package ivy-historian...