From b1b79009e3df39d7e66c06f5dafdeaf8a3594b52 Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Thu, 2 Jul 2015 19:44:04 +0300 Subject: [PATCH] Manual: Fix filetype_map example. --- doc/syntastic.txt | 2 +- plugin/syntastic.vim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/syntastic.txt b/doc/syntastic.txt index adb52afd..6a36c87f 100644 --- a/doc/syntastic.txt +++ b/doc/syntastic.txt @@ -461,7 +461,7 @@ Use this option to map non-standard filetypes to standard ones. Corresponding checkers are mapped accordingly, which allows syntastic to check files with non-standard filetypes: > let g:syntastic_filetype_map = { - \ "latex": "tex", + \ "plaintex": "tex", \ "gentoo-metadata": "xml" } < Composite filetypes can also be mapped to simple types, which disables the diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index cee769d5..4f1f6967 100644 --- a/plugin/syntastic.vim +++ b/plugin/syntastic.vim @@ -19,7 +19,7 @@ if has('reltime') lockvar! g:_SYNTASTIC_START endif -let g:_SYNTASTIC_VERSION = '3.6.0-115' +let g:_SYNTASTIC_VERSION = '3.6.0-116' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1