diff options
Diffstat (limited to 'helix-term/src/application.rs')
-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), } } |