在linux設置/etc/vimrc 將vim 中後綴.sh的文件 的前幾行進行默認輸入

 

輸入vim test.sh 新建後綴sh的文件,效果以下:vim

 

 

具體/etc/vimrc配置爲:bash

 

 if expand("%:e") == 'sh'spa

 call setline(1,"#!/bin/bash")
 call setline(2,"#")
 call setline(3,"#*************************************")
 call setline(4,"#Author: hushuning")
 call setline(5,"#QQ: 36027102")
 call setline(6,"#Date: ".strftime("%Y-%m-%d"))
 call setline(7,"#Filename: ".expand("%"))
 call setline(8,"#*************************************")
 call setline(9,"")
 endif
 endfunc
blog

相關文章
相關標籤/搜索