scriptencoding utf-8 let s:is_vim = !has('nvim') let s:map_next = 1 let s:map_prev = 1 let s:cmd_mapping = has('nvim') || has('patch-8.2.1978') function! coc#snippet#_select_mappings() if !get(g:, 'coc_selectmode_mapping', 1) return endif redir => mappings silent! smap redir END for map in map(filter(split(mappings, '\n'), \ "v:val !~# '^s' && v:val !~# '^\\a*\\s*<\\S\\+>'"), \ "matchstr(v:val, '^\\a*\\s*\\zs\\S\\+')") silent! execute 'sunmap' map silent! execute 'sunmap ' map endfor " same behaviour of ultisnips snoremap c snoremap c snoremap c snoremap "_c endfunction function! coc#snippet#show_choices(lnum, col, len, values) abort let m = mode() call cursor(a:lnum, a:col + a:len) if m !=# 'i' call feedkeys("\i", 'in') endif let changedtick = b:changedtick call timer_start(20, { -> coc#_do_complete(a:col - 1, a:values, 0, changedtick)}) redraw endfunction function! coc#snippet#enable(...) if get(b:, 'coc_snippet_active', 0) == 1 return endif let complete = get(a:, 1, 0) let b:coc_snippet_active = 1 call coc#snippet#_select_mappings() let nextkey = get(g:, 'coc_snippet_next', '') let prevkey = get(g:, 'coc_snippet_prev', '') if maparg(nextkey, 'i') =~# 'snippet' let s:map_next = 0 endif if maparg(prevkey, 'i') =~# 'snippet' let s:map_prev = 0 endif if !empty(nextkey) if s:map_next execute 'inoremap '.nextkey." =coc#snippet#jump(1, ".complete.")" endif execute 'snoremap '.nextkey." :call coc#snippet#jump(1, ".complete.")" endif if !empty(prevkey) if s:map_prev execute 'inoremap '.prevkey." =coc#snippet#jump(0, ".complete.")" endif execute 'snoremap '.prevkey." :call coc#snippet#jump(0, ".complete.")" endif endfunction function! coc#snippet#prev() abort call coc#rpc#request('snippetPrev', []) return '' endfunction function! coc#snippet#next() abort call coc#rpc#request('snippetNext', []) return '' endfunction function! coc#snippet#jump(direction, complete) abort if a:direction == 1 && a:complete && pumvisible() let pre = exists('*complete_info') && complete_info()['selected'] == -1 ? "\" : '' call feedkeys(pre."\", 'in') return '' endif call coc#rpc#request(a:direction == 1 ? 'snippetNext' : 'snippetPrev', []) return '' endfunction function! coc#snippet#disable() if get(b:, 'coc_snippet_active', 0) == 0 return endif let b:coc_snippet_active = 0 let nextkey = get(g:, 'coc_snippet_next', '') let prevkey = get(g:, 'coc_snippet_prev', '') if s:map_next silent! execute 'iunmap '.nextkey endif if s:map_prev silent! execute 'iunmap '.prevkey endif silent! execute 'sunmap '.prevkey silent! execute 'sunmap '.nextkey endfunction function! coc#snippet#select(start, end, text) abort if coc#pum#visible() call coc#pum#close() endif if mode() == 's' call feedkeys("\", 'in') endif if &selection ==# 'exclusive' let cursor = coc#snippet#to_cursor(a:start) call cursor([cursor[0], cursor[1]]) let cmd = '' let cmd .= mode()[0] ==# 'i' ? "\".(col('.') == 1 ? '' : 'l') : '' let cmd .= printf('v%s', strchars(a:text) . 'l') let cmd .= "\" else let cursor = coc#snippet#to_cursor(a:end) call cursor([cursor[0], cursor[1] - 1]) let len = strchars(a:text) - 1 let cmd = '' let cmd .= mode()[0] ==# 'i' ? "\l" : '' let cmd .= printf('v%s', len > 0 ? len . 'h' : '') let cmd .= "o\" endif call feedkeys(cmd, 'n') endfunction function! coc#snippet#move(position) abort let m = mode() if m == 's' call feedkeys("\", 'in') elseif coc#pum#visible() call coc#pum#close() endif let pos = coc#snippet#to_cursor(a:position) call cursor(pos) if pos[1] > strlen(getline(pos[0])) startinsert! else startinsert endif endfunction function! coc#snippet#to_cursor(position) abort let line = getline(a:position.line + 1) if line is v:null return [a:position.line + 1, a:position.character + 1] endif return [a:position.line + 1, byteidx(line, a:position.character) + 1] endfunction