neosnippet.vim/plugin/neosnippet.vim

119 lines
4.4 KiB
VimL
Raw Normal View History

2012-09-27 12:30:33 +00:00
"=============================================================================
" FILE: neosnippet.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
2012-10-29 03:28:33 +00:00
" Last Modified: 29 Oct 2012.
2012-09-27 12:30:33 +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.
" }}}
"=============================================================================
if exists('g:loaded_neosnippet')
finish
elseif v:version < 702
echoerr 'neosnippet does not work this version of Vim "' . v:version . '".'
finish
endif
let s:save_cpo = &cpo
set cpo&vim
" Obsolute options check."{{{
"}}}
" Plugin key-mappings."{{{
2012-09-27 15:42:34 +00:00
inoremap <silent><expr> <Plug>(neosnippet_expand_or_jump)
\ neosnippet#expand_or_jump_impl()
snoremap <silent><expr> <Plug>(neosnippet_expand_or_jump)
\ neosnippet#expand_or_jump_impl()
inoremap <silent><expr> <Plug>(neosnippet_jump_or_expand)
\ neosnippet#jump_or_expand_impl()
snoremap <silent><expr> <Plug>(neosnippet_jump_or_expand)
\ neosnippet#jump_or_expand_impl()
inoremap <silent><expr> <Plug>(neosnippet_expand)
\ neosnippet#expand_impl()
snoremap <silent><expr> <Plug>(neosnippet_expand)
\ neosnippet#expand_impl()
inoremap <silent><expr> <Plug>(neosnippet_jump)
\ neosnippet#jump_impl()
snoremap <silent><expr> <Plug>(neosnippet_jump)
\ neosnippet#jump_impl()
2012-09-27 12:30:33 +00:00
imap <silent> <Plug>(neocomplcache_snippets_expand)
2012-09-27 15:42:34 +00:00
\ <Plug>(neosnippet_expand_or_jump)
2012-09-27 12:30:33 +00:00
smap <silent> <Plug>(neocomplcache_snippets_expand)
2012-09-27 15:42:34 +00:00
\ <Plug>(neosnippet_expand_or_jump)
2012-09-27 12:30:33 +00:00
imap <silent> <Plug>(neocomplcache_snippets_jump)
2012-09-27 15:42:34 +00:00
\ <Plug>(neosnippet_jump_or_expand)
2012-09-27 12:30:33 +00:00
smap <silent> <Plug>(neocomplcache_snippets_jump)
2012-09-27 15:42:34 +00:00
\ <Plug>(neosnippet_jump_or_expand)
2012-09-27 12:30:33 +00:00
imap <silent> <Plug>(neocomplcache_snippets_force_expand)
2012-09-27 15:42:34 +00:00
\ <Plug>(neosnippet_expand)
2012-09-27 12:30:33 +00:00
smap <silent> <Plug>(neocomplcache_snippets_force_expand)
2012-09-27 15:42:34 +00:00
\ <Plug>(neosnippet_expand)
2012-09-27 12:30:33 +00:00
imap <silent> <Plug>(neocomplcache_snippets_force_jump)
2012-09-27 15:42:34 +00:00
\ <Plug>(neosnippet_jump)
2012-09-27 12:30:33 +00:00
smap <silent> <Plug>(neocomplcache_snippets_force_jump)
2012-09-27 15:42:34 +00:00
\ <Plug>(neosnippet_jump)
2012-09-30 09:04:48 +00:00
imap <silent> <Plug>(neocomplcache_start_unite_snippet)
\ <Plug>(neosnippet_start_unite_snippet)
inoremap <expr><silent> <Plug>(neosnippet_start_unite_snippet)
\ unite#sources#snippet#start_complete()
2012-09-27 12:30:33 +00:00
"}}}
2012-09-27 15:42:34 +00:00
augroup neosnippet"{{{
autocmd!
" Set caching event.
autocmd FileType * call neosnippet#caching()
" Recaching events
autocmd BufWritePost *.snip,*.snippets
2012-10-19 09:31:55 +00:00
\ call neosnippet#recaching()
2012-10-29 03:28:33 +00:00
autocmd BufEnter *
\ call neosnippet#clear_select_mode_mappings()
2012-09-27 15:42:34 +00:00
augroup END"}}}
2012-09-30 08:45:41 +00:00
" Commands."{{{
2012-09-30 10:10:25 +00:00
command! -nargs=? -complete=customlist,neosnippet#edit_complete
\ NeoSnippetEdit
\ call neosnippet#edit_snippets(<q-args>)
command! -nargs=? -complete=customlist,neosnippet#filetype_complete
\ NeoSnippetMakeCache
\ call neosnippet#make_cache(<q-args>)
command! -nargs=? -complete=customlist,neosnippet#filetype_complete
\ NeoComplCacheCachingSnippets
\ NeoSnippetMakeCache <args>
2012-09-30 08:45:41 +00:00
command! -nargs=? -complete=customlist,neosnippet#filetype_complete
\ NeoComplCacheEditSnippets
2012-09-30 10:10:25 +00:00
\ NeoSnippetEdit <args>
2012-09-30 08:45:41 +00:00
command! -nargs=? -complete=customlist,neosnippet#filetype_complete
\ NeoComplCacheEditRuntimeSnippets
2012-09-30 10:10:25 +00:00
\ NeoSnippetEdit -runtime <args>
2012-09-30 08:45:41 +00:00
"}}}
2012-09-27 12:30:33 +00:00
let g:loaded_neosnippet = 1
let &cpo = s:save_cpo
unlet s:save_cpo
" __END__
" vim: foldmethod=marker