]> git.ipfire.org Git - thirdparty/vim.git/commit
runtime(dist): Make dist/vim.vim work properly when lacking vim9script support (...
authorSean Dewar <seandewar@users.noreply.github.com>
Sun, 5 Nov 2023 09:11:37 +0000 (09:11 +0000)
committerGitHub <noreply@github.com>
Sun, 5 Nov 2023 09:11:37 +0000 (10:11 +0100)
commitb2a4c110a5d13bc794f4eddb2e88a4e8fe9dfbea
treede9ec29c7c7220221875171265e7280ccc66b941
parent6709816f7807c3ebb062a3124e660def184b739b
runtime(dist): Make dist/vim.vim work properly when lacking vim9script support (#13487)

`:return` cannot be used outside of `:function` (or `:def`) in older Vims
lacking Vim9script support or in Neovim, even when evaluation is being skipped
in the dead `:else` branch.

Instead, use the pattern described in `:h vim9-mix`, which uses `:finish` to end
script processing before it reaches the vim9script stuff.

Signed-off-by: Sean Dewar <seandewar@users.noreply.github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/autoload/dist/vim.vim