62 lines
2.5 KiB
VimL
62 lines
2.5 KiB
VimL
" Vim global plugin for providing templates for new files
|
|
" Licence: The MIT License (MIT)
|
|
" Commit: d3682469538340454d1e11d143735683cc75a13a
|
|
" {{{ Copyright (c) 2015 Aristotle Pagaltzis <pagaltzis@gmx.de>
|
|
"
|
|
" Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
" of this software and associated documentation files (the "Software"), to deal
|
|
" in the Software without restriction, including without limitation the rights
|
|
" to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
" copies of the Software, and to permit persons to whom the Software is
|
|
" furnished to do so, subject to the following conditions:
|
|
"
|
|
" The above copyright notice and this permission notice shall be included in
|
|
" all copies or substantial portions of the Software.
|
|
"
|
|
" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
" AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
" LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
" OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
" THE SOFTWARE.
|
|
" }}}
|
|
|
|
if exists( 'g:loaded_template' ) | finish | endif
|
|
let g:loaded_template = 1
|
|
|
|
augroup template
|
|
autocmd!
|
|
autocmd FileType * if line2byte( line( '$' ) + 1 ) == -1 | call s:loadtemplate( &filetype ) | endif
|
|
augroup END
|
|
|
|
function! s:globpathlist( path, ... )
|
|
let i = 1
|
|
let result = a:path
|
|
while i <= a:0
|
|
let result = substitute( escape( globpath( result, a:{i} ), ' ,\' ), "\n", ',', 'g' )
|
|
if strlen( result ) == 0 | return '' | endif
|
|
let i = i + 1
|
|
endwhile
|
|
return result
|
|
endfunction
|
|
|
|
function! s:loadtemplate( filetype )
|
|
let templatefile = matchstr( s:globpathlist( &runtimepath, 'templates', a:filetype ), '\(\\.\|[^,]\)*', 0 )
|
|
if strlen( templatefile ) == 0 | return | endif
|
|
silent execute 1 'read' templatefile
|
|
1 delete _
|
|
if search( 'cursor:', 'W' )
|
|
let cursorline = strpart( getline( '.' ), col( '.' ) - 1 )
|
|
let y = matchstr( cursorline, '^cursor:\s*\zs\d\+\ze' )
|
|
let x = matchstr( cursorline, '^cursor:\s*\d\+\s\+\zs\d\+\ze' )
|
|
let d = matchstr( cursorline, '^cursor:\s*\d\+\s\+\(\d\+\s\+\)\?\zsdel\>\ze' )
|
|
if ! strlen( x ) | let x = 0 | endif
|
|
if ! strlen( y ) | let y = 0 | endif
|
|
if d == 'del' | delete _ | endif
|
|
call cursor( y, x )
|
|
endif
|
|
set nomodified
|
|
endfunction
|
|
|
|
command -nargs=1 New new | set ft=<args>
|