If expandtab is unset, which is the default with this .vimrc, show a
hard tab indicator after the tab width in the statusline.
" Helper for status line.
" Show the size of the tabstop.
fun! Show_Tabstop() "{{{2
" Helper for status line.
" Show the size of the tabstop.
fun! Show_Tabstop() "{{{2
+ if &et
+ return &ts
+ else
+ if Has_Unicode()
+ return &ts . "↹"
+ else
+ return &ts . "\\"
+ fi
+ endif
endfun "}}}2
" Helper for status line.
endfun "}}}2
" Helper for status line.