From 5e814b20903e6db99d329015c2cf3ccb4affe19b Mon Sep 17 00:00:00 2001 From: Dan Davison Date: Fri, 9 Aug 2024 06:57:08 -0400 Subject: [PATCH] Fix delta-toggle shell script --- manual/src/tips-and-tricks/toggling-delta-features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/src/tips-and-tricks/toggling-delta-features.md b/manual/src/tips-and-tricks/toggling-delta-features.md index 8ec69dfa8..5bca1d792 100644 --- a/manual/src/tips-and-tricks/toggling-delta-features.md +++ b/manual/src/tips-and-tricks/toggling-delta-features.md @@ -2,7 +2,7 @@ To toggle features such as `side-by-side` on and off, one solution is to use thi ```sh delta-toggle() { - eval "export DELTA_FEATURES=$(-delta-features-toggle $1 | tee /dev/stderr)" + eval "export DELTA_FEATURES='$(-delta-features-toggle $1 | tee /dev/stderr)'" } ``` where `-delta-features-toggle` is this Python script: