Split file detecation function

This commit is contained in:
raimon
2015-11-28 23:26:37 +09:00
parent 48f32f5799
commit c260a9f18b
3 changed files with 48 additions and 9 deletions

16
plugin/requirements.vim Normal file
View File

@@ -0,0 +1,16 @@
" the Requirements File Format syntax support for Vim
" Version: 0.1
" Author: raimon <raimon49@hotmail.com>
" License: MIT LICENSE
if exists('g:loaded_requirements')
finish
endif
let g:loaded_requirements = 1
let s:save_cpo = &cpo
set cpo&vim
let &cpo = s:save_cpo
unlet s:save_cpo
" vim: et sw=4 ts=4 sts=4: