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.
pull/16/head
Dmitry Ulyanov 1 year ago committed by GitHub
parent 1fcfef12be
commit dd6e0cce3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -81,7 +81,7 @@ impl ui::menu::Item for lsp::Location {
// 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()
}

Loading…
Cancel
Save