branch: master
commit 31a2f868196aa20dbeffd453b32ec7d8d0f1b2b6
Author: Oleh Krehel <ohwoeo...@gmail.com>
Commit: Oleh Krehel <ohwoeo...@gmail.com>

    counsel.el (counsel-expression-history): enable-recursive-minibuffers
---
 counsel.el |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/counsel.el b/counsel.el
index c64b10e..a2ac55c 100644
--- a/counsel.el
+++ b/counsel.el
@@ -1873,8 +1873,9 @@ An extra action allows to switch to the process buffer."
 ;;;###autoload
 (defun counsel-expression-history ()
   (interactive)
-  (ivy-read "Expr: " (delete-dups read-expression-history)
-            :action #'insert))
+  (let ((enable-recursive-minibuffers t))
+    (ivy-read "Expr: " (delete-dups read-expression-history)
+              :action #'insert)))
 
 ;;* Misc OS
 ;;** `counsel-rhythmbox'

Reply via email to