mirror of
1
0
Fork 0

added support for arguments to custom variables defined in ~/.tmux.conf.local

This commit is contained in:
Gregory Pakosz 2021-09-15 23:01:32 +02:00
parent 14bd87c7b2
commit 1cd8ed93d3
1 changed files with 1 additions and 1 deletions

View File

@ -1297,7 +1297,7 @@ run 'cut -c3- ~/.tmux.conf | sh -s _apply_configuration'
# # -- custom variables --------------------------------------------------- # # -- custom variables ---------------------------------------------------
# #
# if [ -f ~/.tmux.conf.local ] && [ x"$(cut -c3- ~/.tmux.conf.local | sh 2>/dev/null -s printf probe)" = x"probe" ]; then # if [ -f ~/.tmux.conf.local ] && [ x"$(cut -c3- ~/.tmux.conf.local | sh 2>/dev/null -s printf probe)" = x"probe" ]; then
# replacements=$(perl -n -e 'print if s!^#\s+([^()\s]+)\s*\(\)\s*{\s*\n!s%#\\\{\1\\\}%#(cut -c3- ~/.tmux.conf.local | sh -s \1)%g; !p' < ~/.tmux.conf.local) # replacements=$(perl -n -e 'print if s!^#\s+([^()\s]+)\s*\(\)\s*{\s*\n!s%#\\\{\1(.*)\\\}%#(cut -c3- ~/.tmux.conf.local | sh -s \1\\1)%g; !p' < ~/.tmux.conf.local)
# status_left=$(echo "$status_left" | perl -p -e "$replacements" || echo "$status_left") # status_left=$(echo "$status_left" | perl -p -e "$replacements" || echo "$status_left")
# status_right=$(echo "$status_right" | perl -p -e "$replacements" || echo "$status_right") # status_right=$(echo "$status_right" | perl -p -e "$replacements" || echo "$status_right")
# fi # fi