From 938debb2db0eb5ef985305a2f3f62520028a8d55 Mon Sep 17 00:00:00 2001 From: A Farzat Date: Sat, 21 Aug 2021 21:48:41 +0900 Subject: [PATCH] Fix a typo in the last commit In the last commit the automatic-rename option value was saved as yes/no instead of on/off. While yes/no can work completely fine, it is different from what is documented in the manual and therefore is not guaranteed to work on all versions. --- scripts/save.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/save.sh b/scripts/save.sh index 7757df4..7355fab 100755 --- a/scripts/save.sh +++ b/scripts/save.sh @@ -67,7 +67,7 @@ window_format() { format+="${delimiter}" format+="#{window_layout}" format+="${delimiter}" - format+="#{?automatic-rename,yes,no}" + format+="#{?automatic-rename,on,off}" echo "$format" }