diff options
author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2016-12-10 18:49:33 +0900 |
---|---|---|
committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2017-01-02 10:45:10 +0900 |
commit | 6ba3b8538245d1176b869734c76f2688709cf106 (patch) | |
tree | 493eea3f33884d6743f2f58b1b7a618bca4fd639 /runtime/syntax/python.vim | |
parent | 0c43479979547ed84b2a898dcc7816767333cc80 (diff) | |
download | rneovim-6ba3b8538245d1176b869734c76f2688709cf106.tar.gz rneovim-6ba3b8538245d1176b869734c76f2688709cf106.tar.bz2 rneovim-6ba3b8538245d1176b869734c76f2688709cf106.zip |
vim-patch:6f1d9a
Updated runtime files.
https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Diffstat (limited to 'runtime/syntax/python.vim')
-rw-r--r-- | runtime/syntax/python.vim | 4 |
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 |