]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Use short function names in 'statusline'.
authorSimon Ruderich <simon@ruderich.org>
Tue, 20 Nov 2012 21:18:13 +0000 (22:18 +0100)
committerSimon Ruderich <simon@ruderich.org>
Tue, 20 Nov 2012 21:18:13 +0000 (22:18 +0100)
vimrc

diff --git a/vimrc b/vimrc
index c5941692bd497a23e9e04338ce3272c1c8ba0148..63b4acf96795907bdaad54f3fbf5f44daddac2a2 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -303,7 +303,7 @@ if has('statusline')
     " If there's more than one buffer return "/<nr>" (e.g. "/05") where <nr>
     " is the highest buffer number, otherwise return nothing. Used in
     " 'statusline' to get an overview of available buffer numbers.
-    function! StatuslineBufferCount()
+    function! s:StatuslineBufferCount()
         let l:bufnr = bufnr('$')
         if l:bufnr > 1
             let l:result = '/'
@@ -326,7 +326,7 @@ if has('statusline')
     " Like %f but use relative filename if it's shorter than the absolute path
     " (e.g. '../../file' vs. '~/long/path/to/file'). fnamemodify()'s ':.' is
     " not enough because it doesn't create '../'s.
-    function! StatuslineRelativeFilename()
+    function! s:StatuslineRelativeFilename()
         " Display only filename for help files.
         if &buftype == 'help'
             return expand('%:t')
@@ -386,7 +386,7 @@ if has('statusline')
     endfunction
 
     " Return current syntax group in brackets or nothing if there's none.
-    function! StatuslineSyntaxGroup()
+    function! s:StatuslineSyntaxGroup()
         let l:group = synIDattr(synID(line('.'), col('.'), 1), 'name')
         if l:group != ''
             return '[' . l:group . '] '
@@ -395,13 +395,24 @@ if has('statusline')
         endif
     endfunction
 
+    " Short function names to make 'statusline' more readable.
+    function! SBC()
+        return <SID>StatuslineBufferCount()
+    endfunction
+    function! SRF()
+        return <SID>StatuslineRelativeFilename()
+    endfunction
+    function! SSG()
+        return <SID>StatuslineSyntaxGroup()
+    endfunction
+
     set statusline=
     " on the left
     set statusline+=%02n  " buffer number
-    set statusline+=%{StatuslineBufferCount()} " highest buffer number
+    set statusline+=%{SBC()} " highest buffer number
     set statusline+=:
     if has('modify_fname') && v:version >= 700 " some functions need 7.0
-        set statusline+=%{StatuslineRelativeFilename()} " path to current file
+        set statusline+=%{SRF()} " path to current file
         set statusline+=\     " space after path
     else
         set statusline+=%f\   " path to current file in buffer