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

为vim编译默认作者信息

时间:2019-10-17 17:30:26      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:expand   一键   测试   编辑   UNC   bin   name   www   tab   

vim /etc/vim/vimrc
map <F4> ms:call TitleDet()<cr>‘s
function AddTitle()
    call append(0,"#!/bin/bash")
    call append(1,"##############################################")
    call append(2,"#Author: hanye")
    call append(3,"#Email:  hz7726@163.com")
    call append(4,"#Last modified: ".strftime("%Y/%m/%d/%H:%M"))
    call append(5,"#Filename: ".expand("%:t"))
    call append(6,"#Revision:  0.1")
    call append(7,"#Description: ")
    call append(8,"#crontab: * * * * * ".expand("%:t"))
    call append(9,"#Website:   www.hanye")
    call append(10,"#License: GPL")
    call append(11,"##############################################")
    echohl WarningMsg | echo "Successful in adding the copyright." | echohl None
endfunction
function UpdateTitle()
    normal m‘
    execute ‘/#*Last modified:/s@:.*$@\=strftime(":%Y-%m-%d %H:%M")@‘
    normal ‘‘
    normal mk
    execute ‘/#*Filename:/s@:.*$@\=":".expand("%:t")@‘
    execute "noh"
    normal ‘k
    echohl WarningMsg | echo "Successful in updating the copy right." | echohl None
endfunction
function TitleDet()
    let n=1
    while n < 7
        let line = getline(n)
        if line =~ ‘^\#\s*\S*Last\smodified:\S*.*$‘
            call UpdateTitle()
            return
        endif
        let n = n + 1
    endwhile
    call AddTitle()
endfunction

测试 vim a.txt

 fn + f4/f4 实现一键插入编辑信息

为vim编译默认作者信息

标签:expand   一键   测试   编辑   UNC   bin   name   www   tab   

原文地址:https://blog.51cto.com/9025736/2443336

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