- Changed runtime directory.
This commit is contained in:
parent
2359481091
commit
cb51dd674d
@ -1,7 +1,7 @@
|
|||||||
"=============================================================================
|
"=============================================================================
|
||||||
" FILE: neosnippet.vim
|
" FILE: neosnippet.vim
|
||||||
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
||||||
" Last Modified: 28 Sep 2012.
|
" Last Modified: 30 Sep 2012.
|
||||||
" License: MIT license {{{
|
" License: MIT license {{{
|
||||||
" Permission is hereby granted, free of charge, to any person obtaining
|
" Permission is hereby granted, free of charge, to any person obtaining
|
||||||
" a copy of this software and associated documentation files (the
|
" a copy of this software and associated documentation files (the
|
||||||
@ -33,7 +33,7 @@ function! s:initialize()"{{{
|
|||||||
|
|
||||||
let s:snippets_dir = []
|
let s:snippets_dir = []
|
||||||
let s:runtime_dir = split(globpath(&runtimepath,
|
let s:runtime_dir = split(globpath(&runtimepath,
|
||||||
\ 'autoload/neosnippet'), '\n')
|
\ 'autoload/neosnippet/snippets'), '\n')
|
||||||
|
|
||||||
if !g:neocomplcache_snippets_disable_runtime_snippets
|
if !g:neocomplcache_snippets_disable_runtime_snippets
|
||||||
" Set snippets dir.
|
" Set snippets dir.
|
||||||
|
138
autoload/neosnippet/util.vim
Normal file
138
autoload/neosnippet/util.vim
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
"=============================================================================
|
||||||
|
" FILE: util.vim
|
||||||
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
||||||
|
" Last Modified: 28 Sep 2012.
|
||||||
|
" 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
|
||||||
|
|
||||||
|
let s:V = vital#of('neocomplcache')
|
||||||
|
let s:List = vital#of('neocomplcache').import('Data.List')
|
||||||
|
|
||||||
|
function! neocomplcache#util#truncate_smart(...)"{{{
|
||||||
|
return call(s:V.truncate_smart, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
|
||||||
|
function! neocomplcache#util#truncate(...)"{{{
|
||||||
|
return call(s:V.truncate, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
|
||||||
|
function! neocomplcache#util#strchars(...)"{{{
|
||||||
|
return call(s:V.strchars, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#wcswidth(...)"{{{
|
||||||
|
return call(s:V.wcswidth, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#strwidthpart(...)"{{{
|
||||||
|
return call(s:V.strwidthpart, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#strwidthpart_reverse(...)"{{{
|
||||||
|
return call(s:V.strwidthpart_reverse, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
|
||||||
|
function! neocomplcache#util#substitute_path_separator(...)"{{{
|
||||||
|
return call(s:V.substitute_path_separator, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#mb_strlen(...)"{{{
|
||||||
|
return call(s:V.strchars, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#uniq(list)"{{{
|
||||||
|
let dict = {}
|
||||||
|
for item in a:list
|
||||||
|
if !has_key(dict, item)
|
||||||
|
let dict[item] = item
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
|
||||||
|
return values(dict)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#system(...)"{{{
|
||||||
|
return call(s:V.system, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#has_vimproc(...)"{{{
|
||||||
|
return call(s:V.has_vimproc, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#is_windows(...)"{{{
|
||||||
|
return call(s:V.is_windows, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#is_mac(...)"{{{
|
||||||
|
return call(s:V.is_mac, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#get_last_status(...)"{{{
|
||||||
|
return call(s:V.get_last_status, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#escape_pattern(...)"{{{
|
||||||
|
return call(s:V.escape_pattern, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#iconv(...)"{{{
|
||||||
|
return call(s:V.iconv, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#uniq(...)"{{{
|
||||||
|
return call(s:List.uniq, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
|
||||||
|
function! neocomplcache#util#glob(pattern, ...)"{{{
|
||||||
|
if a:pattern =~ "'"
|
||||||
|
" Use glob('*').
|
||||||
|
let cwd = getcwd()
|
||||||
|
let base = neocomplcache#util#substitute_path_separator(
|
||||||
|
\ fnamemodify(a:pattern, ':h'))
|
||||||
|
lcd `=base`
|
||||||
|
|
||||||
|
let files = map(split(neocomplcache#util#substitute_path_separator(
|
||||||
|
\ glob('*')), '\n'), "base . '/' . v:val")
|
||||||
|
|
||||||
|
lcd `=cwd`
|
||||||
|
|
||||||
|
return files
|
||||||
|
endif
|
||||||
|
|
||||||
|
" let is_force_glob = get(a:000, 0, 0)
|
||||||
|
let is_force_glob = get(a:000, 0, 1)
|
||||||
|
|
||||||
|
if !is_force_glob && a:pattern =~ '^[^\\*]\+/\*'
|
||||||
|
\ && neocomplcache#util#has_vimproc() && exists('*vimproc#readdir')
|
||||||
|
return filter(vimproc#readdir(a:pattern[: -2]), 'v:val !~ "/\\.\\.\\?$"')
|
||||||
|
else
|
||||||
|
" Escape [.
|
||||||
|
if neocomplcache#util#is_windows()
|
||||||
|
let glob = substitute(a:pattern, '\[', '\\[[]', 'g')
|
||||||
|
else
|
||||||
|
let glob = escape(a:pattern, '[')
|
||||||
|
endif
|
||||||
|
|
||||||
|
return split(neocomplcache#util#substitute_path_separator(glob(glob)), '\n')
|
||||||
|
endif
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#expand(path)"{{{
|
||||||
|
return expand(escape(a:path, '*?[]"={}'), 1)
|
||||||
|
endfunction"}}}
|
||||||
|
function! neocomplcache#util#set_dictionary_helper(...)"{{{
|
||||||
|
return call(s:V.set_dictionary_helper, a:000)
|
||||||
|
endfunction"}}}
|
||||||
|
|
||||||
|
let &cpo = s:save_cpo
|
||||||
|
unlet s:save_cpo
|
||||||
|
|
||||||
|
" vim: foldmethod=marker
|
@ -317,6 +317,9 @@ snippet *neosnippet-unite-action-snippet*
|
|||||||
==============================================================================
|
==============================================================================
|
||||||
CHANGELOG *neosnippet-changelog*
|
CHANGELOG *neosnippet-changelog*
|
||||||
|
|
||||||
|
2012-09-30
|
||||||
|
- Changed runtime directory.
|
||||||
|
|
||||||
2012-09-27
|
2012-09-27
|
||||||
- Ver.3 development is started.
|
- Ver.3 development is started.
|
||||||
- Renamed documentation.
|
- Renamed documentation.
|
||||||
|
Loading…
Reference in New Issue
Block a user