mirror of
https://github.com/neovim/neovim.git
synced 2026-08-18 13:22:31 +00:00
test(lsp-selection): of by one
The test uses the position col=5,row=5; but such a position is outside of the buffer. Presume that it was meant to be col=5,row=4...
This commit is contained in:
@@ -48,7 +48,7 @@ describe('vim.lsp.selection_range', function()
|
||||
parent = {
|
||||
range = {
|
||||
start = { line = 0, character = 0 },
|
||||
['end'] = { line = 5, character = 5 },
|
||||
['end'] = { line = 4, character = 5 },
|
||||
},
|
||||
parent = nil,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user