From e4726f4f639c7af416c6cea7d0e8504cd9b53771 Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Tue, 29 Oct 2013 09:37:13 +0200 Subject: [PATCH] Add a note to the manual about the fish shell. --- doc/syntastic.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/doc/syntastic.txt b/doc/syntastic.txt index 40913b4d..7047a9dd 100644 --- a/doc/syntastic.txt +++ b/doc/syntastic.txt @@ -30,6 +30,7 @@ CONTENTS *syntastic-contents* 6.Notes........................................|syntastic-notes| 6.1.Handling of composite filetypes........|syntastic-composite| 6.2.Interaction with python-mode...........|syntastic-pymode| + 6.3.Interaction with the fish shell........|syntastic-fish| 7.About........................................|syntastic-about| 8.License......................................|syntastic-license| @@ -484,6 +485,18 @@ python-mode, by setting |pymode_lint_write| to 0. E.g.: > let g:pymode_lint_write = 0 < +------------------------------------------------------------------------------ +6.3 Interaction with the fish shell *syntastic-fish* + +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 +can't be used together with syntastic. You don't need to change your login +shell to address this problem, but you do have to point Vim's 'shell' to a more +traditional shell, such as 'zsh', 'bash', 'ksh', or even the original Bourne +'sh': > + set shell = 'bash' +< + ============================================================================== 7. About *syntastic-about*