Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

Shougo/neosnippet.vim が Shougo/context_filetype を使うようになった

$
0
0

2015/10/31の Shougo/neosnippet.vimの更新で、ファイルタイプの判定に Shougo/context_filetypeが使われるようになりました。

Use context_filetype plugin for source filetypes · Shougo/neosnippet.vim@755f08a

@@ -193,10 +193,8 @@ endfunction"}}}

 function! s:get_sources_filetypes(filetype) "{{{
   let filetypes =
-        \ exists('*neocomplete#get_source_filetypes') ?-        \   neocomplete#get_source_filetypes(a:filetype) :-        \ exists('*neocomplcache#get_source_filetypes') ?-        \   neocomplcache#get_source_filetypes(a:filetype) :+        \ exists('*context_filetype#get_filetypes') ?+        \   context_filetype#get_filetypes(a:filetype) :
         \ split(((a:filetype == '') ? 'nothing' : a:filetype), '\.')
   return filetypes + ['_']
 endfunction"}}}

neosnippet.vim を使う場合は、 context_filetype の併用をおすすめします。

context_filetype が無い場合、たとえば glidenote/serverspec-snippetsを使おうとして :set ft=ruby.serverspecと入力しても、うまく動作しません。


Viewing all articles
Browse latest Browse all 5608

Trending Articles