aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/application.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-12-25 08:42:50 +0000
committerBlaž Hrastnik2020-12-25 08:42:50 +0000
commit3cbab2090839ef0d0ca7d7d6ef01404e48ddc8fa (patch)
tree137dabf6c4a65bc5ac869f9b70c5bc720598d496 /helix-term/src/application.rs
parent2ab069bb3fc815394cccca50378b62932f3146f5 (diff)
lsp: Fix pos_to_lsp_pos calculation.
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r--helix-term/src/application.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 004c5c61..76b16743 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -207,7 +207,7 @@ impl Application {
}),
);
}
- _ => unreachable!(),
+ e => unreachable!("{:?}", e),
}
}