aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/vim_spec.lua
diff options
context:
space:
mode:
authornotomo <notomo.motono@gmail.com>2020-06-04 21:48:48 +0900
committerGitHub <noreply@github.com>2020-06-04 08:48:48 -0400
commitac5a3f2c56775040a1b7de438cfd592c0dc26400 (patch)
tree1f1d56ffffc3631bc5083058b03e5677cda27f79 /test/functional/lua/vim_spec.lua
parentb807de36d4236014ec426aa81eb2952c0b027c64 (diff)
downloadrneovim-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 'test/functional/lua/vim_spec.lua')
-rw-r--r--test/functional/lua/vim_spec.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/lua/vim_spec.lua b/test/functional/lua/vim_spec.lua
index 61bc3e1e3c..aa0b3d822b 100644
--- a/test/functional/lua/vim_spec.lua
+++ b/test/functional/lua/vim_spec.lua
@@ -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' } },
}