diff options
-rwxr-xr-x | emacs.org | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -245,7 +245,7 @@ Generate a random password between 20 and 40 characters ("COPY" #'password-store-copy) ("EDIT" #'password-store-edit) ("GENERATE" #'password-store-generate)))) - (funcall action (ivy-read "Search: " (password-store-list))) + (funcall action (completing-read "Search: " (password-store-list))) (delete-frame))))))) #+end_src ** Keybindings @@ -262,7 +262,7 @@ Generate a random password between 20 and 40 characters (defun thanos/app-launcher () "Launch Emacs as an Application Launcher." (interactive) - (let* ((ivy-height 100)) + (let ((ivy-height 100)) (unwind-protect (with-selected-frame (make-frame '((name . "thanos/emacs-launcher") |