From 2b62dc3c99982d930d17479a34af984f196f5c5d Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 27 Mar 2016 02:29:23 +0300 Subject: [PATCH] .profile: fix a bug in PS1 under screen/tmux: add a missed backslash --- .profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.profile b/.profile index 965af56..5934957 100644 --- a/.profile +++ b/.profile @@ -156,7 +156,7 @@ if [ -t 0 ] ; then OPS1="\[\033]0;\u@\h:\w\007\]" case "$TERM" in screen*) - OPS1=${OPS1}"\[\033k\u@\h:\w\033\\\]" # Set screen/tmux caption + OPS1=${OPS1}"\[\033k\u@\h:\w\033\\\\\]" # Set screen/tmux caption ;; esac ;; -- 2.39.2