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 5fc35977..112bd334 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -334,7 +334,7 @@ impl Application { } // TODO: fetch breakpoints (in case we're attaching) - if let Ok(_) = debugger.configuration_done().await { + if debugger.configuration_done().await.is_ok() { self.editor .set_status("Debugged application started".to_owned()); }; // TODO: do we need to handle error? |