Add missing python3 keyword: nonlocal

This commit is contained in:
Maxim Baz 2018-07-02 23:28:25 +02:00
parent a13e36b4b7
commit 44f0230fe1
No known key found for this signature in database
GPG Key ID: 011FDC52DA839335

View File

@ -87,7 +87,7 @@ add-highlighter shared/python/comment fill comment
# Keyword list is collected using `keyword.kwlist` from `keyword`
keywords="and|as|assert|break|class|continue|def|del|elif|else|except|exec"
keywords="${keywords}|finally|for|global|if|in|is|lambda|not|or|pass|print"
keywords="${keywords}|finally|for|global|if|in|is|lambda|nonlocal|not|or|pass|print"
keywords="${keywords}|raise|return|try|while|with|yield"
types="bool|buffer|bytearray|bytes|complex|dict|file|float|frozenset|int"