mirror of
1
0
Fork 0

removed subshell invocations from _is_enabled()

This commit is contained in:
Gregory Pakosz 2019-05-07 20:28:28 +02:00
parent 49e55bac06
commit 5cc1fe9a12
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ run -b '[ -z "#{window_active}" ] && [ -z "#{version}" ] && tmux set display-tim
# '
#
# _is_enabled() {
# ( ([ x"$1" = x"enabled" ] || [ x"$1" = x"true" ] || [ x"$1" = x"yes" ] || [ x"$1" = x"1" ]) && return 0 ) || return 1
# [ x"$1" = x"true" ] || [ x"$1" = x"yes" ] || [ x"$1" = x"enabled" ] || [ x"$1" = x"1" ]
# }
#
# _circled() {