summaryrefslogtreecommitdiffstats
path: root/src/testdir/shared.vim
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2024-03-09 15:44:19 +0100
committerChristian Brabandt <cb@256bit.org>2024-03-09 15:44:19 +0100
commit35b867b685cedbcbba9d44695077ecc9a6995f4c (patch)
tree826a2fc0299ccc02ff307d04ae98c54fdc650a6b /src/testdir/shared.vim
parentb2ec0da080fb24f12a8d6f54bd7318a078ca4e6c (diff)
patch 9.1.0160: Vim9: Add support for using a class type of itself in an object methodv9.1.0160
Problem: Add support for using a class type of itself in an object method (thinca) Solution: Vim9: Add support for using a class type of itself in an object method (Yegappan Lakshmanan) fixes: #12369 closes: #14165 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/testdir/shared.vim')
-rw-r--r--src/testdir/shared.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/shared.vim b/src/testdir/shared.vim
index 47aeab3b16..dd2f012c01 100644
--- a/src/testdir/shared.vim
+++ b/src/testdir/shared.vim
@@ -301,7 +301,7 @@ func GetVimCommand(...)
let cmd .= ' --not-a-term'
let cmd .= ' --gui-dialog-file guidialogfile'
" remove any environment variables
- let cmd = substitute(cmd, '[A-Z_]*=\S\+ *', '', 'g')
+ let cmd = substitute(cmd, '[A-Z_]\+=\S\+ *', '', 'g')
" If using valgrind, make sure every run uses a different log file.
if cmd =~ 'valgrind.*--log-file='