This commit is contained in:
Chiel92 2013-08-16 21:03:39 +02:00
commit 44786c58ef
2 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ endfunction
function! s:AllowedToCompleteInCurrentFile()
if empty( &filetype )
if empty( &filetype ) || getbufvar(winbufnr(winnr()), "&buftype") ==# 'nofile'
return 0
endif

View File

@ -34,7 +34,7 @@ import tempfile
SERVER_NOT_FOUND_MSG = ( 'OmniSharp server binary not found at {0}. ' +
'Did you compile it? You can do so by running ' +
'"./install.sh --omnisharp_completer".' )
'"./install.sh --omnisharp-completer".' )
class CsharpCompleter( ThreadedCompleter ):
"""