From bf26c53df0601a8c1d63147451aa620916e272d0 Mon Sep 17 00:00:00 2001 From: Yang-Le Date: Tue, 23 Dec 2014 02:32:07 -0500 Subject: [PATCH 1/2] fix highlighting for True and False --- syntax/python.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax/python.vim b/syntax/python.vim index e461241..4fef03f 100644 --- a/syntax/python.vim +++ b/syntax/python.vim @@ -551,7 +551,7 @@ if version >= 508 || !exists("did_python_syn_inits") HiLink pythonHexError Error HiLink pythonBinError Error - HiLink pythonBoolean Boolean + HiLink pythonBoolean Structure HiLink pythonBuiltinObj Structure HiLink pythonBuiltinFunc Function From c6686b860e561208cd42cb8d9fdaa23a5bca6963 Mon Sep 17 00:00:00 2001 From: Yang-Le Wu Date: Sat, 11 Jul 2015 15:15:00 -0400 Subject: [PATCH 2/2] fix escape string highlight --- syntax/python.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syntax/python.vim b/syntax/python.vim index 4fef03f..66d6c07 100644 --- a/syntax/python.vim +++ b/syntax/python.vim @@ -530,9 +530,9 @@ if version >= 508 || !exists("did_python_syn_inits") HiLink pythonRawBytes String HiLink pythonBytesContent String HiLink pythonBytesError Error - HiLink pythonBytesEscape Special - HiLink pythonBytesEscapeError Error endif + HiLink pythonBytesEscape Special + HiLink pythonBytesEscapeError Error HiLink pythonStrFormatting Special HiLink pythonStrFormat Special