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

实现shell脚本模板,自动生成开头注释信息

时间:2020-08-03 23:10:17      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:bin   indent   家目录   etl   func   cmd   end   tom   toc   

建议在用户家目录创建.vimrc文件:
文件格式如下:

set ignorecase
set autoindent
set paste
autocmd BufNewFile *.sh exec ":.call SetTitle()"
func SetTitle()
if expand("%:e") == ‘sh‘
call setline(1,"#!/bin/bash")
call setline(2,"#***********************************************")
call setline(3,"#Author:        Tom")
call setline(4,"#Mail:          123456789@qq.com")
call setline(5,"#Version:       1.0")
call setline(6,"#Date:          ".strftime("%Y-%m-%d"))
call setline(7,"#FileName:      ".expand("%"))
call setline(8,"#Description:   The test script")
call setline(9,"#***********************************************")
call setline(10,"")
endif
endfunc
autocmd BufNewFile * normal G

实现shell脚本模板,自动生成开头注释信息

标签:bin   indent   家目录   etl   func   cmd   end   tom   toc   

原文地址:https://blog.51cto.com/14880320/2516353

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