summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/syntax/python.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2025-09-26 07:54:19 +0800
committerGitHub <noreply@github.com>2025-09-26 07:54:19 +0800
commita9486fe7e1291a997175d6ab74450a73ff3bc090 (patch)
treef4b24b069807e601d06bd9878ceb406b2f184e8f /runtime/syntax/python.vim
parentd9fa4956084efeb73e7bddacd6073357475e8286 (diff)
vim-patch:900c747: runtime(python): fix 'type' syntax highlighting (#35918)
The previous patterns unintentionally highlighted words like 'typename'. addresses: https://github.com/vim/vim/pull/18090#issuecomment-3333025523 closes: vim/vim#18394 https://github.com/vim/vim/commit/900c747da393b031f3347428fb640224ac2f5442 Co-authored-by: Jon Parise <jon@indelible.org>
Diffstat (limited to 'runtime/syntax/python.vim')
-rw-r--r--runtime/syntax/python.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/syntax/python.vim b/runtime/syntax/python.vim
index 138a04b461..4d0c8d4581 100644
--- a/runtime/syntax/python.vim
+++ b/runtime/syntax/python.vim
@@ -2,6 +2,7 @@
" Language: Python
" Maintainer: Zvezdan Petkovic <zpetkovic@acm.org>
" Last Change: 2025 Sep 08
+" 2025 Sep 25 by Vim Project: fix wrong type highlighting #18394
" Credits: Neil Schemenauer <nas@python.ca>
" Dmitry Vasiliev
" Rob B
@@ -308,7 +309,7 @@ if !exists("python_no_builtin_highlight")
syn keyword pythonBuiltin setattr slice sorted staticmethod str sum super
syn keyword pythonBuiltin tuple vars zip __import__
" only match `type` as a builtin when it's not followed by an identifier
- syn match pythonBuiltin "\<type\ze\(\s\+\h\w*\)\@!"
+ syn match pythonBuiltin "\<type\>\ze\(\s\+\h\w*\)\@!"
" avoid highlighting attributes as builtins
syn match pythonAttribute /\.\h\w*/hs=s+1
\ contains=ALLBUT,pythonBuiltin,pythonClass,pythonFunction,pythonType,pythonAsync