summaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2024-08-09 06:57:08 -0400
committerDan Davison <dandavison7@gmail.com>2024-08-09 07:02:12 -0400
commit2c8292fee8f4fb3a63ff7b0e90dd4c89701cc64c (patch)
tree883e5aa6f0ced8d12b3a1e0556e7ad036ea5ad15 /manual
parent07122749965b6221913aecb037e23fb7351dacf4 (diff)
Fix delta-toggle shell script
Diffstat (limited to 'manual')
-rw-r--r--manual/src/tips-and-tricks/toggling-delta-features.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/src/tips-and-tricks/toggling-delta-features.md b/manual/src/tips-and-tricks/toggling-delta-features.md
index 8ec69df..5bca1d7 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: