Revert "debugger: Process ANSI color escape codes in console" (#32906)
Reverts zed-industries/zed#32817 Release Notes: - N/A
This commit is contained in:
parent
0cda28f786
commit
2f1d25d7f3
23 changed files with 234 additions and 558 deletions
|
@ -864,13 +864,16 @@ async fn test_jk(cx: &mut gpui::TestAppContext) {
|
|||
fn assert_pending_input(cx: &mut VimTestContext, expected: &str) {
|
||||
cx.update_editor(|editor, window, cx| {
|
||||
let snapshot = editor.snapshot(window, cx);
|
||||
let highlights = editor.text_highlights::<editor::PendingInput>(cx).unwrap();
|
||||
let highlights = editor
|
||||
.text_highlights::<editor::PendingInput>(cx)
|
||||
.unwrap()
|
||||
.1;
|
||||
let (_, ranges) = marked_text_ranges(expected, false);
|
||||
|
||||
assert_eq!(
|
||||
highlights
|
||||
.iter()
|
||||
.map(|(highlight, _)| highlight.to_offset(&snapshot.buffer_snapshot))
|
||||
.map(|highlight| highlight.to_offset(&snapshot.buffer_snapshot))
|
||||
.collect::<Vec<_>>(),
|
||||
ranges
|
||||
)
|
||||
|
@ -920,12 +923,15 @@ async fn test_jk_delay(cx: &mut gpui::TestAppContext) {
|
|||
cx.assert_state("ˇjhello", Mode::Insert);
|
||||
cx.update_editor(|editor, window, cx| {
|
||||
let snapshot = editor.snapshot(window, cx);
|
||||
let highlights = editor.text_highlights::<editor::PendingInput>(cx).unwrap();
|
||||
let highlights = editor
|
||||
.text_highlights::<editor::PendingInput>(cx)
|
||||
.unwrap()
|
||||
.1;
|
||||
|
||||
assert_eq!(
|
||||
highlights
|
||||
.iter()
|
||||
.map(|(highlight, _)| highlight.to_offset(&snapshot.buffer_snapshot))
|
||||
.map(|highlight| highlight.to_offset(&snapshot.buffer_snapshot))
|
||||
.collect::<Vec<_>>(),
|
||||
vec![0..1]
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue