summaryrefslogtreecommitdiff
path: root/etc/functions/dirinfo
diff options
context:
space:
mode:
Diffstat (limited to 'etc/functions/dirinfo')
-rwxr-xr-xetc/functions/dirinfo8
1 files changed, 7 insertions, 1 deletions
diff --git a/etc/functions/dirinfo b/etc/functions/dirinfo
index 5781580..689c20f 100755
--- a/etc/functions/dirinfo
+++ b/etc/functions/dirinfo
@@ -10,4 +10,10 @@ typeset string
[[ -d .svn ]] && string+='svn '
[[ -f Makefile || -f makefile ]] && string+='make '
-echo $string
+# if we're running in screen, we're the only one writing into the prompt
+# -> no trailing whitespace
+if [[ $TERM == screen ]] {
+ echo ${string% }
+} else {
+ echo $string
+}