diff options
Diffstat (limited to 'helix-view/src/handlers/dap.rs')
-rw-r--r-- | helix-view/src/handlers/dap.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/helix-view/src/handlers/dap.rs b/helix-view/src/handlers/dap.rs index 3da01494..e1437bef 100644 --- a/helix-view/src/handlers/dap.rs +++ b/helix-view/src/handlers/dap.rs @@ -369,9 +369,7 @@ impl Editor { { Ok(process) => process, Err(err) => { - // TODO replace the pretty print {:?} with a regular format {} - // when the MSRV is raised to 1.60.0 - self.set_error(format!("Error starting external terminal: {:?}", err)); + self.set_error(format!("Error starting external terminal: {}", err)); return true; } }; |