2013-02-17 05:20:34 +00:00
|
|
|
"=============================================================================
|
|
|
|
" FILE: neosnippet_file.vim
|
|
|
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
2013-11-21 09:40:40 +00:00
|
|
|
" Last Modified: 21 Nov 2013.
|
2013-02-17 05:20:34 +00:00
|
|
|
" License: MIT license {{{
|
|
|
|
" 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.
|
|
|
|
" }}}
|
|
|
|
"=============================================================================
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
|
|
|
function! unite#sources#neosnippet_file#define() "{{{
|
|
|
|
return [s:source_user, s:source_runtime]
|
|
|
|
endfunction "}}}
|
|
|
|
|
2013-09-01 10:19:22 +00:00
|
|
|
" common action table
|
|
|
|
let s:action_table = {}
|
|
|
|
let s:action_table.neosnippet_source = {
|
|
|
|
\ 'description' : 'neosnippet_source file',
|
|
|
|
\ 'is_selectable' : 1,
|
|
|
|
\ 'is_quit' : 1,
|
|
|
|
\ }
|
|
|
|
function! s:action_table.neosnippet_source.func(candidates) "{{{
|
|
|
|
for candidate in a:candidates
|
|
|
|
let snippet_name = candidate.action__path
|
|
|
|
if snippet_name != ''
|
2013-11-19 07:19:33 +00:00
|
|
|
call neosnippet#commands#_source(snippet_name)
|
2013-09-01 10:19:22 +00:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfunction"}}}
|
|
|
|
|
2013-02-17 05:20:34 +00:00
|
|
|
" neosnippet source.
|
|
|
|
let s:source_user = {
|
|
|
|
\ 'name': 'neosnippet/user',
|
|
|
|
\ 'description' : 'neosnippet user file',
|
2013-09-01 10:19:22 +00:00
|
|
|
\ 'action_table' : copy(s:action_table),
|
2013-02-17 05:20:34 +00:00
|
|
|
\ }
|
|
|
|
function! s:source_user.gather_candidates(args, context) "{{{
|
2013-02-17 05:58:57 +00:00
|
|
|
return s:get_snippet_candidates(
|
|
|
|
\ neosnippet#get_user_snippets_directory())
|
2013-02-17 05:20:34 +00:00
|
|
|
endfunction "}}}
|
|
|
|
|
2013-02-17 07:11:21 +00:00
|
|
|
let s:source_user.action_table.unite__new_candidate = {
|
|
|
|
\ 'description' : 'create new user snippet',
|
|
|
|
\ 'is_invalidate_cache' : 1,
|
|
|
|
\ 'is_quit' : 1,
|
|
|
|
\ }
|
|
|
|
function! s:source_user.action_table.unite__new_candidate.func(candidate) "{{{
|
|
|
|
let filename = input(
|
2013-11-21 09:40:40 +00:00
|
|
|
\ 'New snippet file name: ', neosnippet#helpers#get_filetype())
|
2013-02-17 07:11:21 +00:00
|
|
|
if filename != ''
|
2013-11-19 07:19:33 +00:00
|
|
|
call neosnippet#commands#_edit(filename)
|
2013-02-17 07:11:21 +00:00
|
|
|
endif
|
|
|
|
endfunction"}}}
|
|
|
|
|
2013-02-17 05:20:34 +00:00
|
|
|
|
|
|
|
" neosnippet source.
|
|
|
|
let s:source_runtime = {
|
|
|
|
\ 'name': 'neosnippet/runtime',
|
|
|
|
\ 'description' : 'neosnippet runtime file',
|
2013-09-01 10:19:22 +00:00
|
|
|
\ 'action_table' : copy(s:action_table),
|
2013-02-17 05:20:34 +00:00
|
|
|
\ }
|
|
|
|
function! s:source_runtime.gather_candidates(args, context) "{{{
|
2013-02-17 05:58:57 +00:00
|
|
|
return s:get_snippet_candidates(
|
|
|
|
\ neosnippet#get_runtime_snippets_directory())
|
2013-02-17 05:20:34 +00:00
|
|
|
endfunction "}}}
|
|
|
|
|
2013-02-17 07:11:21 +00:00
|
|
|
let s:source_runtime.action_table.unite__new_candidate = {
|
|
|
|
\ 'description' : 'create new runtime snippet',
|
|
|
|
\ 'is_invalidate_cache' : 1,
|
|
|
|
\ 'is_quit' : 1,
|
|
|
|
\ }
|
|
|
|
function! s:source_runtime.action_table.unite__new_candidate.func(candidate) "{{{
|
|
|
|
let filename = input(
|
2013-11-21 09:40:40 +00:00
|
|
|
\ 'New snippet file name: ', neosnippet#helpers#get_filetype())
|
2013-02-17 07:11:21 +00:00
|
|
|
if filename != ''
|
2013-11-19 07:19:33 +00:00
|
|
|
call neosnippet#commands#_edit('-runtime ' . filename)
|
2013-02-17 07:11:21 +00:00
|
|
|
endif
|
|
|
|
endfunction"}}}
|
|
|
|
|
2013-02-17 05:20:34 +00:00
|
|
|
|
2013-02-17 05:58:57 +00:00
|
|
|
function! s:get_snippet_candidates(dirs) "{{{
|
|
|
|
let _ = []
|
|
|
|
for directory in a:dirs
|
|
|
|
let _ += map(split(unite#util#substitute_path_separator(
|
|
|
|
\ globpath(directory, '**/*.snip*')), '\n'), "{
|
|
|
|
\ 'word' : v:val[len(directory)+1 :],
|
|
|
|
\ 'action__path' : v:val,
|
|
|
|
\ 'kind' : 'file',
|
|
|
|
\ }")
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return _
|
2013-02-17 05:20:34 +00:00
|
|
|
endfunction "}}}
|
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: foldmethod=marker
|