diff options
author | Vincent Ambo <mail@tazj.in> | 2020-12-09T13·57+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-12-09T14·09+0000 |
commit | 2485006197b4296f9d03f38a7b7e010949ff906b (patch) | |
tree | 2060cf473a9894eca827b768e8cc48ffcdd4efb5 /users/tazjin/emacs/config/desktop.el | |
parent | 93f0ab5af86d8bb285a19de00766e9a4a184afdc (diff) |
refactor(tazjin/emacs): Always use completing-read instead of ivy r/1994
This is a step towards making the completing-read framework more easily interchangeable (I'm eyeing selectrum). Change-Id: I7a066e212a5384136defbba8f11ef9ed57abf22e Reviewed-on: https://cl.tvl.fyi/c/depot/+/2240 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
Diffstat (limited to 'users/tazjin/emacs/config/desktop.el')
-rw-r--r-- | users/tazjin/emacs/config/desktop.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/users/tazjin/emacs/config/desktop.el b/users/tazjin/emacs/config/desktop.el index 38da8f75bc2b..393e703e477f 100644 --- a/users/tazjin/emacs/config/desktop.el +++ b/users/tazjin/emacs/config/desktop.el @@ -129,10 +129,10 @@ (interactive) (exwm-workspace-switch-create ,i)))) -;; Launch applications / any command with completion (dmenu style!) +;; Launch applications / any command with completion (dmenu style!) (exwm-input-set-key (kbd "s-d") #'counsel-linux-app) -(exwm-input-set-key (kbd "s-x") #'ivy-run-external-command) -(exwm-input-set-key (kbd "s-p") #'ivy-password-store) +(exwm-input-set-key (kbd "s-x") #'run-external-command) +(exwm-input-set-key (kbd "s-p") #'password-store-lookup) ;; Add X11 terminal selector to a key (exwm-input-set-key (kbd "C-x t") #'ts/switch-to-terminal) |