vim: 新建文件时自动添加信息

创建perl文件时自动写些东西,供偷懒

另Vim常用配置函数介绍

<!-- lang: shell -->
# 非常初级的 => *.pm 显然不该如此
autocmd BufNewFile *.pl exec ":call StrictWarn()"

func StrictWarn()
    call setline(1,"#!/usr/bin/perl")
    call append(1,"use strict;")
    call append(2,"use warnings;")
endfunc

你可能感兴趣的:(vim)