mirror of
https://github.com/neovim/neovim.git
synced 2025-10-21 17:21:49 +00:00
lua: fix behavior when split empty string (#12429)
* lua: fix behavior when split empty string * test: lsp.util.apply_text_edits with an empty edit
This commit is contained in:
@@ -244,6 +244,7 @@ describe('lua stdlib', function()
|
||||
{ "axaby", "ab?", false, { '', 'x', 'y' } },
|
||||
{ "f v2v v3v w2w ", "([vw])2%1", false, { 'f ', ' v3v ', ' ' } },
|
||||
{ "", "", false, {} },
|
||||
{ "", "a", false, { '' } },
|
||||
{ "x*yz*oo*l", "*", true, { 'x', 'yz', 'oo', 'l' } },
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user