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:
notomo
2020-06-04 21:48:48 +09:00
committed by GitHub
parent b807de36d4
commit ac5a3f2c56
3 changed files with 4 additions and 2 deletions

View File

@@ -79,7 +79,7 @@ function vim.gsplit(s, sep, plain)
end
return function()
if done or s == '' then
if done or (s == '' and sep == '') then
return
end
if sep == '' then