diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-03-09 21:03:31 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-09 21:03:31 -0800 |
| commit | 0869cbd55c29ee02a2aeecc0fde3d19f09d5002e (patch) | |
| tree | 0b3478dad8e20136b2e9a782b4f21e7556765783 /test/functional/fixtures | |
| parent | cc23c95bccda06c9bbcadd919f4fb2f2545f1151 (diff) | |
| parent | e4e51c69d740eb7dc4f3bf0479a92ac6442d979a (diff) | |
| download | rneovim-0869cbd55c29ee02a2aeecc0fde3d19f09d5002e.tar.gz rneovim-0869cbd55c29ee02a2aeecc0fde3d19f09d5002e.tar.bz2 rneovim-0869cbd55c29ee02a2aeecc0fde3d19f09d5002e.zip | |
Merge pull request #14079 from mjlbach/incremental_sync
lsp: add incremental text synchronization
Diffstat (limited to 'test/functional/fixtures')
| -rw-r--r-- | test/functional/fixtures/fake-lsp-server.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/fixtures/fake-lsp-server.lua b/test/functional/fixtures/fake-lsp-server.lua index 3bbb4c4517..1b1fc2589f 100644 --- a/test/functional/fixtures/fake-lsp-server.lua +++ b/test/functional/fixtures/fake-lsp-server.lua @@ -402,11 +402,11 @@ function tests.basic_check_buffer_open_and_change_incremental() contentChanges = { { range = { - start = { line = 1; character = 0; }; - ["end"] = { line = 2; character = 0; }; + start = { line = 1; character = 3; }; + ["end"] = { line = 1; character = 3; }; }; - rangeLength = 4; - text = "boop\n"; + rangeLength = 0; + text = "boop"; }; } }) |