X-Git-Url: http://git.iain.cx/?p=profile.git;a=blobdiff_plain;f=.vimrc;h=7a3ca5db2d1d4149d37b1a57425fa118d4633c90;hp=4e84299dc31011a6272f6eaefeab66e02348d826;hb=a8e823fa2005ab190af0461c967f353b7dbb5a51;hpb=0c74a1985f4846a509319bb558724818c84a7e45 diff --git a/.vimrc b/.vimrc index 4e84299..7a3ca5d 100644 --- 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.