diff options
author | notomo <notomo.motono@gmail.com> | 2020-06-04 21:48:48 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-04 08:48:48 -0400 |
commit | ac5a3f2c56775040a1b7de438cfd592c0dc26400 (patch) | |
tree | 1f1d56ffffc3631bc5083058b03e5677cda27f79 /runtime/lua/vim/shared.lua | |
parent | b807de36d4236014ec426aa81eb2952c0b027c64 (diff) | |
download | rneovim-ac5a3f2c56775040a1b7de438cfd592c0dc26400.tar.gz rneovim-ac5a3f2c56775040a1b7de438cfd592c0dc26400.tar.bz2 rneovim-ac5a3f2c56775040a1b7de438cfd592c0dc26400.zip |
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
Diffstat (limited to 'runtime/lua/vim/shared.lua')
-rw-r--r-- | runtime/lua/vim/shared.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/shared.lua b/runtime/lua/vim/shared.lua index 5dc8d6dc10..384d22cb89 100644 --- a/runtime/lua/vim/shared.lua +++ b/runtime/lua/vim/shared.lua @@ -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 |