[Ivy] Remove leading caret in certain circumstances

This commit is contained in:
Daniel Borchmann 2017-07-17 16:03:12 +02:00
parent 488cac5b55
commit 7d107294be
Signed by: exot
GPG Key ID: 4F63DB96D45AA9C6

View File

@ -815,8 +815,13 @@ _h_ _l_ _o_k _y_ank
:commands (ivy-mode :commands (ivy-mode
ivy-resume) ivy-resume)
:diminish ivy-mode :diminish ivy-mode
:config (setq ivy-use-virtual-buffers t :config (progn
enable-recursive-minibuffers t)) (setq ivy-use-virtual-buffers t
enable-recursive-minibuffers t)
(setq ivy-initial-inputs-alist '((counsel-describe-function . "^")
(counsel-describe-variable . "^")
(man . "^")
(woman . "^")))))
(use-package counsel (use-package counsel
:commands (counsel-org-goto-all :commands (counsel-org-goto-all