1
0
Derivar 0

Merge pull request #397 from NigoroJr/master

Fix c snippets expanded in cpp filetype
Este cometimento está contido em:
Shougo 2017-08-17 19:32:34 +09:00 cometido por GitHub
ascendente 4bf88a9e49 e01a166c4e
cometimento b0d6b1c7e0
1 ficheiros modificados com 1 adições e 1 eliminações

Ver ficheiro

@ -178,7 +178,7 @@ function! s:get_sources_filetypes(filetype) abort "{{{
\ exists('*context_filetype#get_filetypes') ?
\ context_filetype#get_filetypes(a:filetype) :
\ split(((a:filetype == '') ? 'nothing' : a:filetype), '\.')
return neosnippet#util#uniq(['_', a:filetype] + filetypes)
return neosnippet#util#uniq(['_'] + filetypes + [a:filetype])
endfunction"}}}
" vim: foldmethod=marker