码迷,mamicode.com
首页 > 其他好文 > 详细

vimscript 文件检测

时间:2014-08-01 22:48:32      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   文件   ar   div   log   file   

vim 文件检测删除文件,使得F5编译的时候不重复执行上次产生的程序

func! CompileRunGpp()
exec "w"
let temp = "/home/darkdream/problem/exe/ "            "后面留一个空格以便替换
let outfilename=substitute(temp," ",expand("%<"),g)   “将空格替换成文件名去后缀
if filereadable(substitute("/home/darkdream/problem/exe/ "," ",expand("%<"),g))   ”检测文件是否存在
silent exec "! rm ".outfilename   “删除文件
endif
silent exec "!g++ % -o /home/darkdream/problem/exe/%<"  
exec "! /home/darkdream/problem/exe/%<"   ”编译运行文件
endfunc

 

vimscript 文件检测,布布扣,bubuko.com

vimscript 文件检测

标签:style   blog   color   文件   ar   div   log   file   

原文地址:http://www.cnblogs.com/zyue/p/3885772.html

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