aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/python.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-01-04 08:24:36 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-01-04 08:24:36 +0100
commit6f9be2464c9385d0f3c8a7bd6a10e765826ceddf (patch)
tree2cb67c82325e1a5a125b35eff0499682946815ac /runtime/syntax/python.vim
parentaf828f22575c8591a176bd9d85ee07f87ba8b911 (diff)
parenta63675c38426944001139b5eaf36d1eb7963df2f (diff)
downloadrneovim-6f9be2464c9385d0f3c8a7bd6a10e765826ceddf.tar.gz
rneovim-6f9be2464c9385d0f3c8a7bd6a10e765826ceddf.tar.bz2
rneovim-6f9be2464c9385d0f3c8a7bd6a10e765826ceddf.zip
Merge #5872 justinmk/test_autochdir
Diffstat (limited to 'runtime/syntax/python.vim')
-rw-r--r--runtime/syntax/python.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/syntax/python.vim b/runtime/syntax/python.vim
index 2a0ea5de2b..fa42b3e2d2 100644
--- a/runtime/syntax/python.vim
+++ b/runtime/syntax/python.vim
@@ -1,7 +1,7 @@
" Vim syntax file
" Language: Python
" Maintainer: Zvezdan Petkovic <zpetkovic@acm.org>
-" Last Change: 2016 Feb 20
+" Last Change: 2016 Jul 21
" Credits: Neil Schemenauer <nas@python.ca>
" Dmitry Vasiliev
"
@@ -72,7 +72,7 @@ set cpo&vim
" built-in below (use 'from __future__ import print_function' in 2)
" - async and await were added in Python 3.5 and are soft keywords.
"
-syn keyword pythonStatement False, None, True
+syn keyword pythonStatement False None True
syn keyword pythonStatement as assert break continue del exec global
syn keyword pythonStatement lambda nonlocal pass print return with yield
syn keyword pythonStatement class def nextgroup=pythonFunction skipwhite