aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/application.rs
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-09-04 06:08:52 +0000
committerDmitry Sharshakov2021-09-04 06:08:52 +0000
commit9939dbf119f5f7820b914785a3550a745d4dbcf2 (patch)
tree5b31a304275a23d7559fa82ea1403c5334b6b13f /helix-term/src/application.rs
parentcf7237d0b920eeb7d887c192bc46c44990cc9b68 (diff)
Fix clippy warnings
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 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?