neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 4f71d9ce355d40239d2fbc387dea421edec1bdab
parent cd25ca5e0caf85a7f5ede3eae73ea51d3deaaeec
Author: Jan Edmund Lazo <jan.lazo@mail.utoronto.ca>
Date:   Sat, 20 Dec 2025 20:57:24 -0500

vim-patch:8.2.3383: Vim9: completion for :disassemble adds parenthesis

Problem:    Vim9: completion for :disassemble adds parenthesis.
Solution:   Don't add parenthesis. (Naohiro Ono, closes vim/vim#8802)

https://github.com/vim/vim/commit/9aecf79c45da5593e4d8c0de1b2d212edc4765ce

Co-authored-by: naohiro ono <obcat@icloud.com>

Diffstat:
Mtest/old/testdir/test_cmdline.vim | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/test/old/testdir/test_cmdline.vim b/test/old/testdir/test_cmdline.vim @@ -1316,9 +1316,11 @@ func Test_cmdline_complete_various() " call assert_equal("\"disas debug Test_cmdline_complete_various", @:) " call feedkeys(":disas profile Test_cmdline_complete_var\<C-A>\<C-B>\"\<CR>", 'xt') " call assert_equal("\"disas profile Test_cmdline_complete_various", @:) + " call feedkeys(":disas Test_cmdline_complete_var\<C-A>\<C-B>\"\<CR>", 'xt') + " call assert_equal("\"disas Test_cmdline_complete_various", @:) " call feedkeys(":disas s:WeirdF\<C-A>\<C-B>\"\<CR>", 'xt') - " call assert_match('"disas <SNR>\d\+_WeirdFunc()', @:) + " call assert_match('"disas <SNR>\d\+_WeirdFunc', @:) " call feedkeys(":disas \<S-Tab>\<C-B>\"\<CR>", 'xt') " call assert_match('"disas <SNR>\d\+_', @:)