"============================================================================= " FILE: util.vim " AUTHOR: Shougo Matsushita " 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('neosnippet') function! neosnippet#util#get_vital() abort "{{{ return s:V endfunction"}}} function! s:get_prelude() abort "{{{ if !exists('s:Prelude') let s:Prelude = neosnippet#util#get_vital().import('Prelude') endif return s:Prelude endfunction"}}} function! s:get_list() abort "{{{ if !exists('s:List') let s:List = neosnippet#util#get_vital().import('Data.List') endif return s:List endfunction"}}} function! s:get_string() abort "{{{ if !exists('s:String') let s:String = neosnippet#util#get_vital().import('Data.String') endif return s:String endfunction"}}} function! s:get_process() abort "{{{ if !exists('s:Process') let s:Process = neosnippet#util#get_vital().import('Process') endif return s:Process endfunction"}}} function! neosnippet#util#substitute_path_separator(...) abort "{{{ return call(s:get_prelude().substitute_path_separator, a:000) endfunction"}}} function! neosnippet#util#system(...) abort "{{{ return call(s:get_process().system, a:000) endfunction"}}} function! neosnippet#util#has_vimproc(...) abort "{{{ return call(s:get_process().has_vimproc, a:000) endfunction"}}} function! neosnippet#util#is_windows(...) abort "{{{ return call(s:get_prelude().is_windows, a:000) endfunction"}}} function! neosnippet#util#is_mac(...) abort "{{{ return call(s:get_prelude().is_mac, a:000) endfunction"}}} function! neosnippet#util#get_last_status(...) abort "{{{ return call(s:get_process().get_last_status, a:000) endfunction"}}} function! neosnippet#util#escape_pattern(...) abort "{{{ return call(s:get_prelude().escape_pattern, a:000) endfunction"}}} function! neosnippet#util#iconv(...) abort "{{{ return call(s:get_process().iconv, a:000) endfunction"}}} function! neosnippet#util#truncate(...) abort "{{{ return call(s:get_string().truncate, a:000) endfunction"}}} function! neosnippet#util#strwidthpart(...) abort "{{{ return call(s:get_string().strwidthpart, a:000) endfunction"}}} function! neosnippet#util#expand(path) abort "{{{ return neosnippet#util#substitute_path_separator( \ expand(escape(a:path, '*?[]"={}'), 1)) endfunction"}}} function! neosnippet#util#set_default(var, val, ...) abort "{{{ let old_var = get(a:000, 0, '') if exists(old_var) let {a:var} = {old_var} elseif !exists(a:var) let {a:var} = a:val endif endfunction"}}} function! neosnippet#util#set_dictionary_helper(...) abort "{{{ return call(s:get_prelude().set_dictionary_helper, a:000) endfunction"}}} function! neosnippet#util#get_cur_text() abort "{{{ return \ (mode() ==# 'i' ? (col('.')-1) : col('.')) >= len(getline('.')) ? \ getline('.') : \ matchstr(getline('.'), \ '^.*\%' . col('.') . 'c' . (mode() ==# 'i' ? '' : '.')) endfunction"}}} function! neosnippet#util#get_next_text() abort "{{{ return getline('.')[len(neosnippet#util#get_cur_text()) :] endfunction"}}} function! neosnippet#util#print_error(string) abort "{{{ echohl Error | echomsg '[neosnippet] ' . a:string | echohl None endfunction"}}} function! neosnippet#util#parse_options(args, options_list) abort "{{{ let args = [] let options = {} for arg in split(a:args, '\%(\\\@