码迷,mamicode.com
首页 > 系统相关 > 详细

vim 脚本之快捷注释

时间:2016-03-31 02:07:00      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

今天初步学习了下vim的脚本知识,并尝试写了一个简单的脚本。当然,这个脚本很简单,使用的方法也很笨拙。不过,这仅仅是一个开始,等以后随着对vim语法的深入了解,会不断优化这个脚本的。先记录下来

" annotation.vim
" Version:      1.0

if exists("g:zsl_loaded_annotation") || &cp || v:version < 700
  finish
endif
let g:zsl_loaded_annotation = 1

"for java & C/C++
function AnnotationJ()
  call AnnotationBase("/*", "*/")
endfunction

"for perl
function AnnotationP()
  call AnnotationBase("\#")
endfunction

"for shell
function AnnotationS()
  call AnnotationBase(‘"‘)
endfunction

"for xml
function AnnotationX()
  call AnnotationBase("\< --", "!--\>")
endfunction

"基础函数
function AnnotationBase(...)
  let time = "2016-01-01"
  let anno = "modify by zhangshui time begin"
  let curline = line(".")
  echo a:1
  if a:0 == 1
    let anno = a:1." ".anno
  elseif a:0 == 2
    let anno = a:1." ".anno." ".a:2
  endif
  if exists("*strftime")
    let time = strftime("%Y-%m-%d")
  endif
  let anno = substitute(anno, "time", time, ‘‘)
  call append(curline, anno)
  call append(curline+1, substitute(anno, "begin", "end", ‘‘))
  +1
endfunction

 

vim 脚本之快捷注释

标签:

原文地址:http://www.cnblogs.com/zhangshuli-1989/p/zsl_2016_03_31_0009.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!