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

自动添加shell脚本头部信息

时间:2019-10-27 16:33:51      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:esc   time   自动   title   for   and   end   exp   new   

autocmd BufNewFile *.sh exec ":call AddTitleForShell()"
function  AddTitleForShell()
    call append(0,"#!/bin/bash")
    call append(1,"# **********************************************************")
    call append(2,"# * Author        : quanzhiqiang")
    call append(3,"# * Email         : 13145710069@163.com")
    call append(4,"# * Create time   : ".strftime("%Y-%m-%d %H:%M"))
    call append(5,"# * Filename      : ".expand("%:t"))
    call append(6,"# * Description   : ")
    call append(7,"# **********************************************************")
endfunction

  

自动添加shell脚本头部信息

标签:esc   time   自动   title   for   and   end   exp   new   

原文地址:https://www.cnblogs.com/betterquan/p/11747830.html

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