about summary refs log tree commit diff
path: root/users/tazjin/emacs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@tvl.su>2023-09-27T10·35+0300
committerclbot <clbot@tvl.fyi>2023-09-27T10·57+0000
commit6a834fd109e8fff8b52c52447c60eade8c73b5da (patch)
tree5bb11086c1285f28c273f48560c347340d278ca8 /users/tazjin/emacs
parentfa0e7ffa61afd8e808fc82c9c40d12aacdd9c3ae (diff)
fix(tazjin/emacs): set telega's completing read to standard r/6665
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 <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'users/tazjin/emacs')
-rw-r--r--users/tazjin/emacs/config/init.el4
1 files changed, 3 insertions, 1 deletions
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)