Mercurial > vim
changeset 35175:df99ac9547f6
runtime(python): Fix wrong define regex in ftplugin (#14763)
Commit: https://github.com/vim/vim/commit/7961210b861ce9a1a773cfc1fe96b388216bb1f2
Author: Tom Picton <tom@tompicton.com>
Date: Mon May 13 16:00:40 2024 -0400
runtime(python): Fix wrong define regex in ftplugin (https://github.com/vim/vim/issues/14763)
Signed-off-by: Tom Picton <tom@tompicton.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 13 May 2024 22:15:03 +0200 |
parents | 1e330b17a6c7 |
children | bbbd250e3d7a |
files | runtime/ftplugin/python.vim |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/runtime/ftplugin/python.vim +++ b/runtime/ftplugin/python.vim @@ -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 = '^\(.\.\)\(\.*\)'