Fix line number display for LSP goto pickers (#6559)

Line numbers are 0-indexed in the LSP spec but 1-indexed for display
and jumping purposes in Helix.
This commit is contained in:
Dmitry Ulyanov 2023-04-03 17:22:43 +03:00 committed by GitHub
parent 1fcfef12be
commit dd6e0cce3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,7 @@ fn format(&self, cwdir: &Self::Data) -> Row {
// Most commonly, this will not allocate, especially on Unix systems where the root prefix
// is a simple `/` and not `C:\` (with whatever drive letter)
write!(&mut res, ":{}", self.range.start.line)
write!(&mut res, ":{}", self.range.start.line + 1)
.expect("Will only failed if allocating fail");
res.into()
}