- 27 名前:名無しさん@お腹いっぱい。 mailto:sage [2010/09/17(金) 17:56:29 ]
- neocomplcache.vim (4e271922ef57b2eec525c54dae49e949befad052)
native windows でコメントの中で、大括弧 { を使うと Vim(let):E220: } がありません. というようなエラーが出ます。 とりあえず、672d75e34f07b7577585532e3af236352e293359 での修正を 元に戻すと直りましたが、中の人見てましたら何らかの修正お願いします。 diff --git a/autoload/neocomplcache.vim b/autoload/neocomplcache.vim index a8cf514..4e5218b 100644 --- a/autoload/neocomplcache.vim +++ b/autoload/neocomplcache.vim @@ -103,8 +103,13 @@ function! neocomplcache#enable() "{{{ endif call neocomplcache#set_dictionary_helper(g:neocomplcache_keyword_patterns, 'default', \'\k\+') - call neocomplcache#set_dictionary_helper(g:neocomplcache_keyword_patterns, 'filename', - \'\%(\\[^[:alnum:].-]\|\f\)\+') + if has('win32') || has('win64') + call neocomplcache#set_dictionary_helper(g:neocomplcache_keyword_patterns, 'filename', + \'\%(\\[^[:alnum:].-]\|[[:alnum:]:@/._+#$%~-]\)\+') + else + call neocomplcache#set_dictionary_helper(g:neocomplcache_keyword_patterns, 'filename', + \'\%(\\[^[:alnum:].-]\|[[:alnum:]@/._+#$%~-]\)\+') + endif call neocomplcache#set_dictionary_helper(g:neocomplcache_keyword_patterns, 'lisp,scheme,clojure,int-gosh,int-clisp,int-clj', \'[[:alnum:]+*@$%^&_=<>~.-]\+[!?]\?') call neocomplcache#set_dictionary_helper(g:neocomplcache_keyword_patterns, 'ruby,int-irb',
|

|