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>
This commit is contained in:
Jan Edmund Lazo
2025-12-20 20:57:24 -05:00
parent cd25ca5e0c
commit 4f71d9ce35
+3 -1
View File
@@ -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\+_', @:)