From c12dd1c78524acb238207dfac8b6e0f1810057ea Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Tue, 22 Dec 2020 11:51:57 +0100 Subject: [PATCH] bash: make vim syntax highlighting happy --- roles/common/files/bashrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/common/files/bashrc b/roles/common/files/bashrc index ff2221e..a241c71 100644 --- a/roles/common/files/bashrc +++ b/roles/common/files/bashrc @@ -253,11 +253,11 @@ alias dark='_update_colors dark' # Either ST or BEL (\a) can be used to end an OSC sequence. However, tmux # requires ST to end its wrapping DCS. if [ -n "$TMUX" ]; then - _OSC=$(printf "\ePtmux;\e\e]") - _ST=$(printf "\a\e\\") + _OSC=$(printf '\ePtmux;\e\e]') + _ST=$(printf '\a\e\\') else - _OSC=$(printf "\e]") - _ST=$(printf "\a") + _OSC=$(printf '\e]') + _ST=$(printf '\a') fi _update_colors() {