- Added commands.

This commit is contained in:
Shougo Matsushita
2013-11-19 16:19:33 +09:00
parent c3ca7a9ae2
commit bee4d73092
5 changed files with 149 additions and 113 deletions

View File

@@ -74,17 +74,17 @@ augroup neosnippet "{{{
augroup END"}}}
" Commands. "{{{
command! -nargs=? -complete=customlist,neosnippet#edit_complete
command! -nargs=? -complete=customlist,neosnippet#commands#_edit_complete
\ NeoSnippetEdit
\ call neosnippet#edit_snippets(<q-args>)
\ call neosnippet#commands#_edit(<q-args>)
command! -nargs=? -complete=customlist,neosnippet#filetype_complete
\ NeoSnippetMakeCache
\ call neosnippet#make_cache(<q-args>)
\ call neosnippet#commands#_make_cache(<q-args>)
command! -nargs=1 -complete=file
\ NeoSnippetSource
\ call neosnippet#source_file(<q-args>)
\ call neosnippet#commands#_source(<q-args>)
"}}}
let g:loaded_neosnippet = 1