1
0
Fork 0
mirror of synced 2024-06-10 17:21:09 -04:00

updated _apply_configuration() to redact tmux_conf_ variables from environment in a single call

This commit is contained in:
Gregory Pakosz 2019-05-07 21:48:24 +02:00
parent 5cc1fe9a12
commit 9b5f5155b3

View file

@ -1216,7 +1216,8 @@ run -b '[ -z "#{window_active}" ] && [ -z "#{version}" ] && tmux set display-tim
# _apply_overrides # _apply_overrides
# _apply_bindings # _apply_bindings
# _apply_theme # _apply_theme
# for name in $(printenv | grep -E -o '^tmux_conf_[^=]+'); do tmux setenv -gu "$name"; done; # # shellcheck disable=SC2046
# tmux setenv -gu tmux_conf_dummy $(printenv | grep -E -o '^tmux_conf_[^=]+' | awk '{printf "; setenv -gu %s", $0}')
# } # }
# #
# _urlview() { # _urlview() {