diff --git a/README.markdown b/README.markdown index c702c80..03040ec 100644 --- a/README.markdown +++ b/README.markdown @@ -1,6 +1,6 @@ -#Nimrod language support for Vim +#Nim language support for Vim -This provides [Nimrod](http://nimrod-code.org) language support for Vim: +This provides [Nim](http://nimrod-code.org) language support for Vim: * Syntax highlighting * Auto-indent diff --git a/autoload/nim.vim b/autoload/nim.vim index 57e0bb1..1fa110f 100644 --- a/autoload/nim.vim +++ b/autoload/nim.vim @@ -2,7 +2,7 @@ let g:nim_log = [] let s:plugin_path = escape(expand(':p:h'), ' \') if !exists("g:nim_caas_enabled") - let g:nim_caas_enabled = 1 + let g:nim_caas_enabled = 0 endif if !executable('nim') @@ -202,7 +202,7 @@ endf " Syntastic syntax checking fun! SyntaxCheckers_nim_nim_GetLocList() - let makeprg = 'nim check --hints:off ' . s:CurrentNimFile() + let makeprg = 'nim check --hints:off --listfullpaths ' . s:CurrentNimFile() let errorformat = &errorformat return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })