summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzlg <zlg@zlg.space>2018-11-12 21:07:12 -0800
committerzlg <zlg@zlg.space>2018-11-12 21:07:12 -0800
commit2c8706045e6853508ecd29de0e4dab0c51133f44 (patch)
treeb1084a4ab20ec2dd017365c44fbd518638d325ae
parentAdd BufDiff() (diff)
downloadvimrc-2c8706045e6853508ecd29de0e4dab0c51133f44.tar.gz
vimrc-2c8706045e6853508ecd29de0e4dab0c51133f44.tar.bz2
vimrc-2c8706045e6853508ecd29de0e4dab0c51133f44.tar.xz
vimrc-2c8706045e6853508ecd29de0e4dab0c51133f44.zip
Clean up function comments
-rw-r--r--vimrc18
1 files changed, 11 insertions, 7 deletions
diff --git a/vimrc b/vimrc
index 54a49d7..edd8988 100644
--- a/vimrc
+++ b/vimrc
@@ -217,8 +217,8 @@ if (exists("g:use_dvorak") && g:use_dvorak == 1)
endif
" Functions {{{1
-" Credit to Drew Neil of vimcasts.org
-function! <SID>StripTrailingWhitespaces() " {{{2
+" StripTrailingWhitespaces, by Drew Neil of vimcasts.org {{{2
+function! <SID>StripTrailingWhitespaces()
" Save last search and cursor position
let _s=@/
let l = line(".")
@@ -230,15 +230,16 @@ function! <SID>StripTrailingWhitespaces() " {{{2
call cursor(l, c)
endfunction
-" Credit to Drew Neil of vimcasts.org
-function! <SID>SynStack() " {{{2
+" SynStack, by Drew Neil of vimcasts.org {{{2
+function! <SID>SynStack()
if !exists("*synstack")
return
endif
echo map(synstack(line('.'), col('.')), 'synIDattr(v:val, "name")')
endfunction
-function! <SID>CountCodeLines() " {{{2
+" CountCodeLines, by zlg {{{2
+function! <SID>CountCodeLines()
let code_count = 0
for line in getbufline("%", 1, "$")
if (len(line) > 0 && match(line, '\S\+') > -1)
@@ -251,7 +252,9 @@ function! <SID>CountCodeLines() " {{{2
echo code_count . ' lines of code.'
endfunction
-function! s:IsCommentLine(line) " {{{2
+" IsCommentLine, by zlg {{{2
+" Meant to be used with CountCodeLines()
+function! s:IsCommentLine(line)
let l:comtypes = []
let l:comlist = split(&comments, ',')
for i in comlist
@@ -273,7 +276,8 @@ function! s:IsCommentLine(line) " {{{2
return 0
endfunction
-function! <SID>InsertDOW() " {{{2
+" InsertDOW, by zlg {{{2
+function! <SID>InsertDOW()
" Let's backup a random register
let tmpx = @x
let @x = system("date +\"%a \" -d" . strftime("%Y") . "-" . substitute(expand("<cWORD>"), ":", "", ""))