Colours for PS2 and PS4.
[profile.git] / .vimrc
diff --git a/.vimrc b/.vimrc
index 4e84299..7a3ca5d 100644 (file)
--- a/.vimrc
+++ b/.vimrc
@@ -773,7 +773,15 @@ endfun "}}}2
 " Helper for status line.
 " Show the size of the tabstop.
 fun! Show_Tabstop() "{{{2
-  return &ts
+  if &et
+    return &ts
+  else
+    if Has_Unicode()
+      return &ts . "↹"
+    else
+      return &ts . "\\"
+    fi
+  endif
 endfun "}}}2
 
 " Helper for status line.