From dfefaa14f3cffe665e5a78ad373472cd9cde8b03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Thu, 12 Jun 2008 11:57:20 +0000 Subject: [PATCH] Remove \[ \] markers in PS1. They are supposed to contain non-displayable control characters, but gnome-terminal is painfully slow at editting the command line with those... git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25937 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- 3rdparty/mmu_man/scripts/dev-perso | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/3rdparty/mmu_man/scripts/dev-perso b/3rdparty/mmu_man/scripts/dev-perso index 0d6f8a6ce8..7ca528ea6f 100755 --- a/3rdparty/mmu_man/scripts/dev-perso +++ b/3rdparty/mmu_man/scripts/dev-perso @@ -98,7 +98,8 @@ function dev() { ;; *) # prompt: set window title to [project:folder] also - export PS1='\[\033]0;['$1':\W]\a\]\[\033[1m\][\u@\h \w]\[\033[0m\]\$ ' + #export PS1='\[\033]0;['$1':\W]\a\]\[\033[1m\][\u@\h \w]\[\033[0m\]\$ ' + export PS1='\033]0;['$1':\W]\a\033[1m[\u@\h \w]\033[0m\$ ' ;; esac # lower priority so background builds don't slow the GUI too much