- 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

@@ -1,7 +1,7 @@
"=============================================================================
" FILE: neosnippet_file.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
" Last Modified: 17 Feb 2013.
" Last Modified: 19 Nov 2013.
" License: MIT license {{{
" Permission is hereby granted, free of charge, to any person obtaining
" a copy of this software and associated documentation files (the
@@ -42,7 +42,7 @@ function! s:action_table.neosnippet_source.func(candidates) "{{{
for candidate in a:candidates
let snippet_name = candidate.action__path
if snippet_name != ''
call neosnippet#source_file(snippet_name)
call neosnippet#commands#_source(snippet_name)
endif
endfor
endfunction"}}}
@@ -67,7 +67,7 @@ function! s:source_user.action_table.unite__new_candidate.func(candidate) "{{{
let filename = input(
\ 'New snippet file name: ', neosnippet#get_filetype())
if filename != ''
call neosnippet#edit_snippets(filename)
call neosnippet#commands#_edit(filename)
endif
endfunction"}}}
@@ -92,7 +92,7 @@ function! s:source_runtime.action_table.unite__new_candidate.func(candidate) "{{
let filename = input(
\ 'New snippet file name: ', neosnippet#get_filetype())
if filename != ''
call neosnippet#edit_snippets('-runtime ' . filename)
call neosnippet#commands#_edit('-runtime ' . filename)
endif
endfunction"}}}