branch: master
commit c2646d40add5a97a4ee20c335cd3a49b06de1b24
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>

    counsel.el (counsel-load-theme-action): Update
    
    Add noconfirm arg.
---
 counsel.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/counsel.el b/counsel.el
index 6fe37aa..31022ac 100644
--- a/counsel.el
+++ b/counsel.el
@@ -637,7 +637,7 @@ The libraries are offered from `load-path'."
   (condition-case nil
       (progn
         (mapc #'disable-theme custom-enabled-themes)
-        (load-theme (intern x))
+        (load-theme (intern x) t)
         (when (fboundp 'powerline-reset)
           (powerline-reset)))
     (error "Problem loading theme %s" x)))

Reply via email to