您好,登錄后才能下訂單哦!
本篇文章為大家展示了如何編輯vim配置文件使新建文件自動寫入文件頭,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
因工作需要經常寫shell腳本,每次都要寫腳本的頭,就想偷個懶,在每次寫腳本的時候可以自動生成想要的信息,編輯/etc/vimrc該文件,在新增.sh文件的時候會出現一些信息
autocmd BufNewFile *.sh exec ":call Setcomment()"
func Setcomment()
call append(0,"#!/bin/bash")
call append(1,"#*********************************** ")
call append(2,"#* copyleft test " .strftime("%Y-%m-%d"))
call append(3,"#* scriptname: " .expand("%"))
call append(4,"#* email: sb@localhost")
call append(5,"#* version: v0.1 ")
call append(6,"#*********************************** ")
endfunc
=================================================================================================================================================================================================================================
編輯/etc/vimrc該文件,在新增.sh以及.py文件的時候會出現一些信息
autocmd BufNewFile *.py,*.sh, exec ":call SetTitle()"
let $author_name = "xxx"
let $author_email = "xxx@xxx.xxx"
func SetTitle()
if &filetype == 'sh'
call setline(1,"\###################################################################")
call append(line("."), "\# File Name: ".expand("%"))
call append(line(".")+1, "\# Author: ".$author_name)
call append(line(".")+2, "\# mail: ".$author_email)
call append(line(".")+3, "\# Created Time: ".strftime("%c"))
call append(line(".")+4, "\#=============================================================")
call append(line(".")+5, "\#!/bin/bash")
call append(line(".")+6, "")
else
call setline(1,"\###################################################################")
call append(line("."), "\# File Name: ".expand("%"))
call append(line(".")+1, "\# Author: ".$author_name)
call append(line(".")+2, "\# mail: ".$author_email)
call append(line(".")+3, "\# Created Time: ".strftime("%c"))
call append(line(".")+4, "\#=============================================================")
call append(line(".")+5, "\#!/usr/bin/python")
call append(line(".")+6, "")
endif
endfunc
上述內容就是如何編輯vim配置文件使新建文件自動寫入文件頭,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。