From 67c22c27001d4365ed0f491eb90c9aad61dd7900 Mon Sep 17 00:00:00 2001 From: Gregory Pakosz Date: Fri, 17 May 2019 23:26:31 +0200 Subject: [PATCH] worked around implementations of sed that don't understand -E, resolves #150 --- .tmux.conf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index 163eaf1..e69fab4 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -177,6 +177,14 @@ run 'cut -c3- ~/.tmux.conf | sh -s _apply_configuration' # # export LC_NUMERIC=C # +# if ! printf '' | sed -E 's///' 2>/dev/null; then +# if printf '' | sed -r 's///' 2>/dev/null; then +# sed () { +# command sed "${@/-E/-r}" +# } +# fi +# fi +# # __newline=' # ' #