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.
pull/399/head
A Farzat 2021-08-21 21:48:41 +09:00
parent fb60f93578
commit 938debb2db
1 changed files with 1 additions and 1 deletions

View File

@ -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"
}