vim-patch:8.2.3377: Vim9: :disass completion does not understand "s:"

Problem:    Vim9: :disass completion does not understand "s:".
Solution:   Expand "s:" to a pattern. (closes vim/vim#8780)

47016f5772

Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
Jan Edmund Lazo
2025-12-20 20:54:34 -05:00
parent 525c348c29
commit cd25ca5e0c

View File

@@ -1317,6 +1317,9 @@ func 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 s:WeirdF\<C-A>\<C-B>\"\<CR>", 'xt')
" call assert_match('"disas <SNR>\d\+_WeirdFunc()', @:)
" call feedkeys(":disas \<S-Tab>\<C-B>\"\<CR>", 'xt')
" call assert_match('"disas <SNR>\d\+_', @:)
" call feedkeys(":disas debug \<S-Tab>\<C-B>\"\<CR>", 'xt')