imgbot
Blaž Hrastnik 3 years ago
parent dbe870e4ec
commit 6c705f09e8

@ -210,7 +210,7 @@ impl Selection {
Self::single(pos, pos)
}
fn normalize(mut ranges: SmallVec<[Range; 1]>, mut primary_index: usize) -> Selection {
fn normalize(mut ranges: SmallVec<[Range; 1]>, mut primary_index: usize) -> Self {
let primary = ranges[primary_index];
ranges.sort_unstable_by_key(Range::from);
primary_index = ranges.iter().position(|&range| range == primary).unwrap();
@ -249,7 +249,7 @@ impl Selection {
result.push(range)
}
Selection {
Self {
ranges: result,
primary_index,
}

@ -140,20 +140,20 @@ impl Notification {
.expect("Failed to parse PublishDiagnostics params");
// TODO: need to loop over diagnostics and distinguish them by URI
Notification::PublishDiagnostics(params)
Self::PublishDiagnostics(params)
}
lsp::notification::ShowMessage::METHOD => {
let params: lsp::ShowMessageParams =
params.parse().expect("Failed to parse ShowMessage params");
Notification::ShowMessage(params)
Self::ShowMessage(params)
}
lsp::notification::LogMessage::METHOD => {
let params: lsp::LogMessageParams =
params.parse().expect("Failed to parse ShowMessage params");
Notification::LogMessage(params)
Self::LogMessage(params)
}
_ => {
log::error!("unhandled LSP notification: {}", method);

Loading…
Cancel
Save