From 953ca06c1fc1c3ea468fe4aa1032a11f877558d3 Mon Sep 17 00:00:00 2001 From: Frank LENORMAND Date: Fri, 14 Aug 2015 11:41:07 +0300 Subject: [PATCH] Add bool to the list of highlighted types --- rc/python.kak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/python.kak b/rc/python.kak index 87e3bdf1..981137fd 100644 --- a/rc/python.kak +++ b/rc/python.kak @@ -32,7 +32,7 @@ addhl -group /python/code regex \<(import|from)\> 0:meta # Keyword list is collected using `keyword.kwlist` from `keyword` addhl -group /python/code regex \<(and|as|assert|break|class|continue|def|del|elif|else|except|exec|finally|for|global|if|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield)\> 0:keyword # Highlight types, when they are not used as constructors -addhl -group /python/code regex \<(buffer|bytearray|complex|dict|file|float|frozenset|int|list|long|memoryview|object|set|str|tuple|unicode|xrange)\>[^(] 1:type +addhl -group /python/code regex \<(bool|buffer|bytearray|complex|dict|file|float|frozenset|int|list|long|memoryview|object|set|str|tuple|unicode|xrange)\>[^(] 1:type # Commands # ‾‾‾‾‾‾‾‾