温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

vim编辑器添加默认的作者信息

发布时间:2020-06-07 17:28:57 来源:网络 阅读:327 作者:weilovepan520 栏目:网络安全

很多程序员都想给自己的程序添加一些作者信息之类的信息,那么我们应该怎么实现这个要求呐?

已shell脚本为例,只需要修改/etc/vimrc配置文件,在文件末尾添加如下内容即可

注:vimrc文件中,注释行是以"标记的,否则会报错

复制时注释行单独复制,代码段可以一起复制,否则会造成缩进不正确

"当按F4键时添加作者信息,如果需要在添加一个python可以添加F5
map <F4> ms:call TitleDet()<cr>'s
function AddTitle()
    call append(0,"#!/bin/bash")
    call append(1,"##############################################")
    call append(2,"#Author: Liuzhengwei - 1135960569@qq.com")
    call append(3,"#QQ:1135960569")
    call append(4,"#Last modified: ".strftime("%Y-%m-%d %H:%M"))
    call append(5,"#Filename: ".expand("%:t"))
    call append(6,"#Description: ")
    call append(7,"##############################################")
    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
"判断如果前10行中如果有Last modified:字段
"如果没有的话,则代表没有添加过作者的信息等条件,则重新添加
"如果有的话,那么只更新修改时间和文件名
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

添加完成之后,打开一个test.sh的文件,按F4就会出现如下信息。

[root@test3 tmp]# vim test.sh
#!/bin/bash
##############################################
#Author: Liuzhengwei - 1135960569@qq.com
#QQ:1135960569
#Last modified: 2016-07-04 15:55
#Filename: test.sh
#Description: 
##############################################
向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI