]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(python): Fix wrong define regex in ftplugin (#14763)
authorTom Picton <tom@tompicton.com>
Mon, 13 May 2024 20:00:40 +0000 (16:00 -0400)
committerGitHub <noreply@github.com>
Mon, 13 May 2024 20:00:40 +0000 (22:00 +0200)
Signed-off-by: Tom Picton <tom@tompicton.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/ftplugin/python.vim

index 3a7190201f87210e6e2d3839f8e1e0f1c3f72c38..c000296726ca263717fc4acc530354a038899477 100644 (file)
@@ -3,7 +3,7 @@
 " Maintainer:  Tom Picton <tom@tompicton.com>
 " Previous Maintainer: James Sully <sullyj3@gmail.com>
 " Previous Maintainer: Johannes Zellner <johannes@zellner.org>
-" Last Change: 2024/05/11
+" Last Change: 2024/05/13
 " https://github.com/tpict/vim-ftplugin-python
 
 if exists("b:did_ftplugin") | finish | endif
@@ -14,7 +14,7 @@ set cpo&vim
 setlocal cinkeys-=0#
 setlocal indentkeys-=0#
 setlocal include=^\\s*\\(from\\\|import\\)
-setlocal define=^\\s*\\([async ]\\?def\\\|class\\)
+setlocal define=^\\s*\\(\\(async\\s\\+\\)\\?def\\\|class\\)
 
 " For imports with leading .., append / and replace additional .s with ../
 let b:grandparent_match = '^\(.\.\)\(\.*\)'