Remove the minimap from the debugger console (#30610)
Follow-up of https://github.com/zed-industries/zed/pull/26893 Release Notes: - N/A
This commit is contained in:
parent
32c7fcd78c
commit
54c6d482b6
2 changed files with 1 additions and 2 deletions
|
@ -45,6 +45,7 @@ impl Console {
|
||||||
let mut editor = Editor::multi_line(window, cx);
|
let mut editor = Editor::multi_line(window, cx);
|
||||||
editor.move_to_end(&editor::actions::MoveToEnd, window, cx);
|
editor.move_to_end(&editor::actions::MoveToEnd, window, cx);
|
||||||
editor.set_read_only(true);
|
editor.set_read_only(true);
|
||||||
|
editor.disable_scrollbars_and_minimap(window, cx);
|
||||||
editor.set_show_gutter(false, cx);
|
editor.set_show_gutter(false, cx);
|
||||||
editor.set_show_runnables(false, cx);
|
editor.set_show_runnables(false, cx);
|
||||||
editor.set_show_breakpoints(false, cx);
|
editor.set_show_breakpoints(false, cx);
|
||||||
|
|
|
@ -1131,8 +1131,6 @@ impl LanguageServer {
|
||||||
where
|
where
|
||||||
T::Result: 'static + Send,
|
T::Result: 'static + Send,
|
||||||
T: request::Request,
|
T: request::Request,
|
||||||
// TODO kb
|
|
||||||
// <T as lsp_types::request::Request>::Result: ConnectionResult,
|
|
||||||
{
|
{
|
||||||
let id = next_id.fetch_add(1, SeqCst);
|
let id = next_id.fetch_add(1, SeqCst);
|
||||||
let message = serde_json::to_string(&Request {
|
let message = serde_json::to_string(&Request {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue