From eb2a07e6fff5c3f9c475ddc19ede3934acce2858 Mon Sep 17 00:00:00 2001 From: Origami404 Date: Wed, 8 Apr 2026 20:44:34 +0800 Subject: [PATCH] [zsh] fix tea complete stall --- home/standalone/.zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/standalone/.zshrc b/home/standalone/.zshrc index e4e3833..702f070 100644 --- a/home/standalone/.zshrc +++ b/home/standalone/.zshrc @@ -36,5 +36,6 @@ if command -v opam &> /dev/null; then fi if command -v tea &> /dev/null; then - source <(tea completion zsh) + # this can only use eval, dont know why + eval $(tea completion zsh) fi