From a295c5e8848c241d82034383d53b085f557e539c Mon Sep 17 00:00:00 2001 From: XiaoYan Li Date: Fri, 27 Dec 2024 15:56:14 +0800 Subject: [PATCH] Fix zsh shell integration docs - There is no need to quote variables in zsh. - The shell integration file is not executable; we should `source` it instead. --- src/shell-integration/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell-integration/README.md b/src/shell-integration/README.md index 78f5687df..1194ee21b 100644 --- a/src/shell-integration/README.md +++ b/src/shell-integration/README.md @@ -73,6 +73,6 @@ sequence occurs. ```bash if [[ -n $GHOSTTY_RESOURCES_DIR ]]; then - "$GHOSTTY_RESOURCES_DIR"/shell-integration/zsh/ghostty-integration + source $GHOSTTY_RESOURCES_DIR/shell-integration/zsh/ghostty-integration fi ```