diff options
author | Vincent Ambo <tazjin@tvl.su> | 2023-09-27T10·35+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-09-27T10·57+0000 |
commit | 6a834fd109e8fff8b52c52447c60eade8c73b5da (patch) | |
tree | 5bb11086c1285f28c273f48560c347340d278ca8 /users/tazjin | |
parent | fa0e7ffa61afd8e808fc82c9c40d12aacdd9c3ae (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')
-rw-r--r-- | users/tazjin/emacs/config/init.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/users/tazjin/emacs/config/init.el b/users/tazjin/emacs/config/init.el index 1c584f9ea872..e98ae6dcd3b1 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) |