Manual: fix examples to use g:syntastic_shell.
This commit is contained in:
parent
47eabae37d
commit
67fc031e04
@ -608,7 +608,7 @@ Set this to the full path of the shell you want syntastic to use when running
|
|||||||
the checkers. On UNIX and Mac OS-X this shell has to support the standard UNIX
|
the checkers. On UNIX and Mac OS-X this shell has to support the standard UNIX
|
||||||
syntax for file redirections ">" and "2>", such as "zsh", "bash", "ksh", or
|
syntax for file redirections ">" and "2>", such as "zsh", "bash", "ksh", or
|
||||||
even the original Bourne "sh". Example: >
|
even the original Bourne "sh". Example: >
|
||||||
set shell=/bin/bash
|
let g:syntastic_shell = "/bin/sh"
|
||||||
<
|
<
|
||||||
*'syntastic_debug'*
|
*'syntastic_debug'*
|
||||||
Default: 0
|
Default: 0
|
||||||
@ -816,11 +816,10 @@ have to set |ycm_show_diagnostics_ui| to 0. E.g.: >
|
|||||||
|
|
||||||
At the time of this writing the 'fish' shell (see http://fishshell.com/)
|
At the time of this writing the 'fish' shell (see http://fishshell.com/)
|
||||||
doesn't support the standard UNIX syntax for file redirections, and thus it
|
doesn't support the standard UNIX syntax for file redirections, and thus it
|
||||||
can't be used together with syntastic. You don't need to change your login
|
can't be used together with syntastic. You can however set |g:syntastic_shell|
|
||||||
shell to address this problem, but you do have to point Vim's 'shell' to a more
|
to a more traditional shell, such as "zsh", "bash", "ksh", or even the
|
||||||
traditional shell, such as "zsh", "bash", "ksh", or even the original Bourne
|
original Bourne "sh": >
|
||||||
"sh": >
|
let g:syntastic_shell = "/bin/sh"
|
||||||
set shell=bash
|
|
||||||
<
|
<
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
6.6. Interaction with PowerShell *syntastic-powershell*
|
6.6. Interaction with PowerShell *syntastic-powershell*
|
||||||
@ -842,7 +841,7 @@ is possible, but potentially problematic. In order to do it you'll need to set
|
|||||||
Please keep in mind however that Vim can't take advantage of any of the
|
Please keep in mind however that Vim can't take advantage of any of the
|
||||||
interactive features of 'fizsh'. Using a more traditional shell such as "zsh",
|
interactive features of 'fizsh'. Using a more traditional shell such as "zsh",
|
||||||
"bash", "ksh", or the original Bourne "sh" might be a better choice: >
|
"bash", "ksh", or the original Bourne "sh" might be a better choice: >
|
||||||
set shell=zsh
|
let g:syntastic_shell = "/bin/sh"
|
||||||
<
|
<
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
6.8. Interaction with Eclim *syntastic-eclim*
|
6.8. Interaction with Eclim *syntastic-eclim*
|
||||||
|
@ -19,7 +19,7 @@ if has('reltime')
|
|||||||
lockvar! g:_SYNTASTIC_START
|
lockvar! g:_SYNTASTIC_START
|
||||||
endif
|
endif
|
||||||
|
|
||||||
let g:_SYNTASTIC_VERSION = '3.6.0-53'
|
let g:_SYNTASTIC_VERSION = '3.6.0-54'
|
||||||
lockvar g:_SYNTASTIC_VERSION
|
lockvar g:_SYNTASTIC_VERSION
|
||||||
|
|
||||||
" Sanity checks {{{1
|
" Sanity checks {{{1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user