diff options
author | Blaž Hrastnik | 2020-12-25 08:42:50 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-12-25 08:42:50 +0000 |
commit | 3cbab2090839ef0d0ca7d7d6ef01404e48ddc8fa (patch) | |
tree | 137dabf6c4a65bc5ac869f9b70c5bc720598d496 /helix-term/src | |
parent | 2ab069bb3fc815394cccca50378b62932f3146f5 (diff) |
lsp: Fix pos_to_lsp_pos calculation.
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/application.rs | 2 |
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), } } |