summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonid Volnitsky <Leonid@Volnitsky.com>2011-08-27 22:44:38 +0300
committerLeonid Volnitsky <Leonid@Volnitsky.com>2011-08-27 22:44:38 +0300
commitecd0a5e3a7733be761f37867a22f0123b1595317 (patch)
tree5398c52520b62326ca80f2f2a04def6525dc1dcd
parentreverted accidantal merge of remote-watch (diff)
downloadgit-prompt-ecd0a5e3a7733be761f37867a22f0123b1595317.tar.gz
git-prompt-ecd0a5e3a7733be761f37867a22f0123b1595317.tar.bz2
git-prompt-ecd0a5e3a7733be761f37867a22f0123b1595317.zip
fixes: Issue #15 -- truncates shall label to 200 chars
-rwxr-xr-xgit-prompt.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/git-prompt.sh b/git-prompt.sh
index ee025a1..e851fd9 100755
--- a/git-prompt.sh
+++ b/git-prompt.sh
@@ -222,7 +222,10 @@ cwd_truncate() {
set_shell_label() {
- xterm_label() { echo -n "]2;${@}" ; } # FIXME: replace hardcodes with terminfo codes
+ xterm_label() {
+ local args="$*"
+ echo -n "]2;${args:0:200}" ; # FIXME: replace hardcodes with terminfo codes
+ }
screen_label() {
# FIXME: run this only if screen is in xterm (how to test for this?)