diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-10-08 16:13:53 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2021-10-08 16:15:35 +0200 |
commit | ef687d3218adcb55698a03c3b21b625195e0ba98 (patch) | |
tree | 436b9027eafb30bc3e9a82ead2739ff0641ef2b5 /test/functional/lua/buffer_updates_spec.lua | |
parent | 93d33ed02eddd38771bfc1ab0d69e63a9491ace4 (diff) | |
download | rneovim-ef687d3218adcb55698a03c3b21b625195e0ba98.tar.gz rneovim-ef687d3218adcb55698a03c3b21b625195e0ba98.tar.bz2 rneovim-ef687d3218adcb55698a03c3b21b625195e0ba98.zip |
fix(buffer_updates): handle :sort of already sorted buffer
Diffstat (limited to 'test/functional/lua/buffer_updates_spec.lua')
-rw-r--r-- | test/functional/lua/buffer_updates_spec.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/functional/lua/buffer_updates_spec.lua b/test/functional/lua/buffer_updates_spec.lua index 83ed7394b0..c83a50b78b 100644 --- a/test/functional/lua/buffer_updates_spec.lua +++ b/test/functional/lua/buffer_updates_spec.lua @@ -1088,6 +1088,22 @@ describe('lua: nvim_buf_attach on_bytes', function() } end) + it(":sort lines", function() + local check_events = setup_eventcheck(verify, {"CCC", "BBB", "AAA"}) + + command "%sort" + check_events { + { "test1", "bytes", 1, 3, 0, 0, 0, 3, 0, 12, 3, 0, 12 }; + } + end) + + it("handles already sorted lines", function() + local check_events = setup_eventcheck(verify, {"AAA", "BBB", "CCC"}) + + command "%sort" + check_events { } + end) + local function test_lockmarks(mode) local description = (mode ~= "") and mode or "(baseline)" it("test_lockmarks " .. description .. " %delete _", function() |