From 6a834fd109e8fff8b52c52447c60eade8c73b5da Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 27 Sep 2023 13:35:09 +0300 Subject: fix(tazjin/emacs): set telega's completing read to standard Telega tries to use some random completing-read functions, but I just want it to use the default one, which I've configured the way I want. Change-Id: I33da24f257e8ac0cae4a7d25ba6c5e4e656fcad5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9478 Tested-by: BuildkiteCI Reviewed-by: tazjin Autosubmit: tazjin --- users/tazjin/emacs/config/init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/users/tazjin/emacs/config/init.el b/users/tazjin/emacs/config/init.el index 1c584f9ea8..e98ae6dcd3 100644 --- a/users/tazjin/emacs/config/init.el +++ b/users/tazjin/emacs/config/init.el @@ -181,7 +181,9 @@ :bind (:map global-map ("s-t" . telega) :map telega-chat-button-map ("a" . ignore)) :config (telega-mode-line-mode 1) - :custom (telega-emoji-use-images nil) + :custom + (telega-emoji-use-images nil) + (telega-completing-read-function #'completing-read) :hook (telega-chat-mode . company-mode)) (use-package terraform-mode) -- cgit 1.4.1