summaryrefslogtreecommitdiffstats
path: root/runtime/syntax/testdir/input/vim_ex_def_nested.vim
diff options
context:
space:
mode:
authordkearns <dougkearns@gmail.com>2024-04-15 04:32:56 +1000
committerGitHub <noreply@github.com>2024-04-14 20:32:56 +0200
commit4ba70cab37d2a625d8c59bb136070ef9d1976934 (patch)
treeb08db573f2267ff4c35d64afc2aab959473c5856 /runtime/syntax/testdir/input/vim_ex_def_nested.vim
parentc59a8648b2d8b3e17f12cd45f74a31b1aa385d2d (diff)
runtime(vim): Update base-syntax, fix nested function folding (#14397)
Only match function folding start and end patterns at the start of a line, excluding heredocs and :append/:change/:insert commands. Fixes #14393 Signed-off-by: Christian Brabandt <cb@256bit.org> Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Diffstat (limited to 'runtime/syntax/testdir/input/vim_ex_def_nested.vim')
-rw-r--r--runtime/syntax/testdir/input/vim_ex_def_nested.vim20
1 files changed, 20 insertions, 0 deletions
diff --git a/runtime/syntax/testdir/input/vim_ex_def_nested.vim b/runtime/syntax/testdir/input/vim_ex_def_nested.vim
new file mode 100644
index 0000000000..008c41520a
--- /dev/null
+++ b/runtime/syntax/testdir/input/vim_ex_def_nested.vim
@@ -0,0 +1,20 @@
+vim9script
+# Vim9 :def command (nested)
+
+class Test
+ const name: string
+
+ def new()
+ def Name(): string
+ function GiveName()
+ return "any"
+ endfunction
+
+ return GiveName()
+ enddef
+
+ this.name = Name()
+ enddef
+endclass
+
+echo Test.new()