diff options
author | Al Colmenar <57642956+alcolmenar@users.noreply.github.com> | 2024-06-07 02:54:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-07 11:54:43 +0200 |
commit | 2ce4a4d91e4abee0aab8b98c47eea9fbd4849ba6 (patch) | |
tree | 4e3b5a9fee2c05e908fd5d6c19163ceff046f8e0 /runtime/lua/vim/lsp/util.lua | |
parent | 6e45cd7f0026ee33b8c397b810dcfe5b4678bbd8 (diff) | |
download | rneovim-2ce4a4d91e4abee0aab8b98c47eea9fbd4849ba6.tar.gz rneovim-2ce4a4d91e4abee0aab8b98c47eea9fbd4849ba6.tar.bz2 rneovim-2ce4a4d91e4abee0aab8b98c47eea9fbd4849ba6.zip |
fix(lsp): fix reverse sorting of same position text edits (#29212)
Problem:
Text edits with the same position (both line and character) were being
reverse sorted prior to being applied which differs from the lsp spec
Solution:
Change the sort order for just the same position edits
Diffstat (limited to 'runtime/lua/vim/lsp/util.lua')
-rw-r--r-- | runtime/lua/vim/lsp/util.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/util.lua b/runtime/lua/vim/lsp/util.lua index fc027cfcc0..3d61af8b15 100644 --- a/runtime/lua/vim/lsp/util.lua +++ b/runtime/lua/vim/lsp/util.lua @@ -391,7 +391,7 @@ function M.apply_text_edits(text_edits, bufnr, offset_encoding) return a.range.start.character > b.range.start.character end if a._index ~= b._index then - return a._index > b._index + return a._index < b._index end end) |