diff --git a/crates/debugger_ui/src/session/running/console.rs b/crates/debugger_ui/src/session/running/console.rs index 7550dcb25643bb7811d2c60bf5ccd64c46541535..a4bb75f4784c7ff85d9688afc28d68a943ff2f6d 100644 --- a/crates/debugger_ui/src/session/running/console.rs +++ b/crates/debugger_ui/src/session/running/console.rs @@ -45,6 +45,7 @@ impl Console { let mut editor = Editor::multi_line(window, cx); editor.move_to_end(&editor::actions::MoveToEnd, window, cx); editor.set_read_only(true); + editor.disable_scrollbars_and_minimap(window, cx); editor.set_show_gutter(false, cx); editor.set_show_runnables(false, cx); editor.set_show_breakpoints(false, cx); diff --git a/crates/lsp/src/lsp.rs b/crates/lsp/src/lsp.rs index 2c54066a5151ac502d90d03bab52afb0f3d6f66f..4558549092a66d9a976026e5e909e2c43090ba27 100644 --- a/crates/lsp/src/lsp.rs +++ b/crates/lsp/src/lsp.rs @@ -1131,8 +1131,6 @@ impl LanguageServer { where T::Result: 'static + Send, T: request::Request, - // TODO kb - // ::Result: ConnectionResult, { let id = next_id.fetch_add(1, SeqCst); let message = serde_json::to_string(&Request {