@@ -1,92 +1,80 @@
-use gpui::TestAppContext;
-use language::language_settings::{AllLanguageSettings, AllLanguageSettingsContent};
-use settings::SettingsStore;
-
-// use super::*;
-// use crate::{
-// scroll::scroll_amount::ScrollAmount,
-// test::{
-// assert_text_with_selections, build_editor, editor_lsp_test_context::EditorLspTestContext,
-// editor_test_context::EditorTestContext, select_ranges,
-// },
-// JoinLines,
-// };
-// use drag_and_drop::DragAndDrop;
-// use futures::StreamExt;
-// use gpui::{
-// executor::Deterministic,
-// geometry::{rect::RectF, vector::vec2f},
-// platform::{WindowBounds, WindowOptions},
-// serde_json::{self, json},
-// TestAppContext,
-// };
-// use indoc::indoc;
-// use language::{
-// language_settings::{AllLanguageSettings, AllLanguageSettingsContent, LanguageSettingsContent},
-// BracketPairConfig, FakeLspAdapter, LanguageConfig, LanguageConfigOverride, LanguageRegistry,
-// Override, Point,
-// };
-// use parking_lot::Mutex;
-// use project::project_settings::{LspSettings, ProjectSettings};
-// use project::FakeFs;
-// use std::sync::atomic;
-// use std::sync::atomic::AtomicUsize;
-// use std::{cell::RefCell, future::Future, rc::Rc, time::Instant};
-// use unindent::Unindent;
-// use util::{
-// assert_set_eq,
-// test::{marked_text_ranges, marked_text_ranges_by, sample_text, TextRangeMarker},
-// };
-// use workspace::{
-// item::{FollowableItem, Item, ItemHandle},
-// NavigationEntry, ViewId,
-// };
-
+use super::*;
+use crate::{
+ scroll::scroll_amount::ScrollAmount,
+ test::{
+ assert_text_with_selections, build_editor, editor_lsp_test_context::EditorLspTestContext,
+ editor_test_context::EditorTestContext, select_ranges,
+ },
+ JoinLines,
+};
+
+use futures::StreamExt;
+use gpui::{
+ div,
+ serde_json::{self, json},
+ Div, TestAppContext, VisualTestContext, WindowBounds, WindowOptions,
+};
+use indoc::indoc;
+use language::{
+ language_settings::{AllLanguageSettings, AllLanguageSettingsContent, LanguageSettingsContent},
+ BracketPairConfig, FakeLspAdapter, LanguageConfig, LanguageConfigOverride, LanguageRegistry,
+ Override, Point,
+};
+use parking_lot::Mutex;
+use project::project_settings::{LspSettings, ProjectSettings};
+use project::FakeFs;
+use std::sync::atomic;
+use std::sync::atomic::AtomicUsize;
+use std::{cell::RefCell, future::Future, rc::Rc, time::Instant};
+use unindent::Unindent;
+use util::{
+ assert_set_eq,
+ test::{marked_text_ranges, marked_text_ranges_by, sample_text, TextRangeMarker},
+};
+use workspace::{
+ item::{FollowEvent, FollowableEvents, FollowableItem, Item, ItemHandle},
+ NavigationEntry, ViewId,
+};
+
+// todo(finish edit tests)
// #[gpui::test]
// fn test_edit_events(cx: &mut TestAppContext) {
// init_test(cx, |_| {});
-// let buffer = cx.add_model(|cx| {
-// let mut buffer = language::Buffer::new(0, cx.model_id() as u64, "123456");
+// let buffer = cx.build_model(|cx| {
+// let mut buffer = language::Buffer::new(0, cx.entity_id().as_u64(), "123456");
// buffer.set_group_interval(Duration::from_secs(1));
// buffer
// });
// let events = Rc::new(RefCell::new(Vec::new()));
-// let editor1 = cx
-// .add_window({
-// let events = events.clone();
-// |cx| {
-// cx.subscribe(&cx.handle(), move |_, _, event, _| {
-// if matches!(
-// event,
-// Event::Edited | Event::BufferEdited | Event::DirtyChanged
-// ) {
-// events.borrow_mut().push(("editor1", event.clone()));
-// }
-// })
-// .detach();
-// Editor::for_buffer(buffer.clone(), None, cx)
-// }
-// })
-// .root(cx);
-// let editor2 = cx
-// .add_window({
-// let events = events.clone();
-// |cx| {
-// cx.subscribe(&cx.handle(), move |_, _, event, _| {
-// if matches!(
-// event,
-// Event::Edited | Event::BufferEdited | Event::DirtyChanged
-// ) {
-// events.borrow_mut().push(("editor2", event.clone()));
-// }
-// })
-// .detach();
-// Editor::for_buffer(buffer.clone(), None, cx)
-// }
-// })
-// .root(cx);
+// let editor1 = cx.add_window({
+// let events = events.clone();
+// |cx| {
+// let view = cx.view().clone();
+// cx.subscribe(&view, move |_, _, event, _| {
+// if matches!(event, Event::Edited | Event::BufferEdited) {
+// events.borrow_mut().push(("editor1", event.clone()));
+// }
+// })
+// .detach();
+// Editor::for_buffer(buffer.clone(), None, cx)
+// }
+// });
+
+// let editor2 = cx.add_window({
+// let events = events.clone();
+// |cx| {
+// cx.subscribe(&cx.view().clone(), move |_, _, event, _| {
+// if matches!(event, Event::Edited | Event::BufferEdited) {
+// events.borrow_mut().push(("editor2", event.clone()));
+// }
+// })
+// .detach();
+// Editor::for_buffer(buffer.clone(), None, cx)
+// }
+// });
+
// assert_eq!(mem::take(&mut *events.borrow_mut()), []);
// // Mutating editor 1 will emit an `Edited` event only for that editor.
@@ -97,8 +85,6 @@ use settings::SettingsStore;
// ("editor1", Event::Edited),
// ("editor1", Event::BufferEdited),
// ("editor2", Event::BufferEdited),
-// ("editor1", Event::DirtyChanged),
-// ("editor2", Event::DirtyChanged)
// ]
// );
@@ -121,8 +107,6 @@ use settings::SettingsStore;
// ("editor1", Event::Edited),
// ("editor1", Event::BufferEdited),
// ("editor2", Event::BufferEdited),
-// ("editor1", Event::DirtyChanged),
-// ("editor2", Event::DirtyChanged),
// ]
// );
@@ -134,8 +118,6 @@ use settings::SettingsStore;
// ("editor1", Event::Edited),
// ("editor1", Event::BufferEdited),
// ("editor2", Event::BufferEdited),
-// ("editor1", Event::DirtyChanged),
-// ("editor2", Event::DirtyChanged),
// ]
// );
@@ -147,8 +129,6 @@ use settings::SettingsStore;
// ("editor2", Event::Edited),
// ("editor1", Event::BufferEdited),
// ("editor2", Event::BufferEdited),
-// ("editor1", Event::DirtyChanged),
-// ("editor2", Event::DirtyChanged),
// ]
// );
@@ -160,8 +140,6 @@ use settings::SettingsStore;
// ("editor2", Event::Edited),
// ("editor1", Event::BufferEdited),
// ("editor2", Event::BufferEdited),
-// ("editor1", Event::DirtyChanged),
-// ("editor2", Event::DirtyChanged),
// ]
// );
@@ -174,6095 +152,6198 @@ use settings::SettingsStore;
// assert_eq!(mem::take(&mut *events.borrow_mut()), []);
// }
-// #[gpui::test]
-// fn test_undo_redo_with_selection_restoration(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let mut now = Instant::now();
-// let buffer = cx.add_model(|cx| language::Buffer::new(0, cx.model_id() as u64, "123456"));
-// let group_interval = buffer.read_with(cx, |buffer, _| buffer.transaction_group_interval());
-// let buffer = cx.add_model(|cx| MultiBuffer::singleton(buffer, cx));
-// let editor = cx
-// .add_window(|cx| build_editor(buffer.clone(), cx))
-// .root(cx);
-
-// editor.update(cx, |editor, cx| {
-// editor.start_transaction_at(now, cx);
-// editor.change_selections(None, cx, |s| s.select_ranges([2..4]));
-
-// editor.insert("cd", cx);
-// editor.end_transaction_at(now, cx);
-// assert_eq!(editor.text(cx), "12cd56");
-// assert_eq!(editor.selections.ranges(cx), vec![4..4]);
-
-// editor.start_transaction_at(now, cx);
-// editor.change_selections(None, cx, |s| s.select_ranges([4..5]));
-// editor.insert("e", cx);
-// editor.end_transaction_at(now, cx);
-// assert_eq!(editor.text(cx), "12cde6");
-// assert_eq!(editor.selections.ranges(cx), vec![5..5]);
-
-// now += group_interval + Duration::from_millis(1);
-// editor.change_selections(None, cx, |s| s.select_ranges([2..2]));
-
-// // Simulate an edit in another editor
-// buffer.update(cx, |buffer, cx| {
-// buffer.start_transaction_at(now, cx);
-// buffer.edit([(0..1, "a")], None, cx);
-// buffer.edit([(1..1, "b")], None, cx);
-// buffer.end_transaction_at(now, cx);
-// });
+#[gpui::test]
+fn test_undo_redo_with_selection_restoration(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut now = Instant::now();
+ let buffer = cx.build_model(|cx| language::Buffer::new(0, cx.entity_id().as_u64(), "123456"));
+ let group_interval = buffer.update(cx, |buffer, _| buffer.transaction_group_interval());
+ let buffer = cx.build_model(|cx| MultiBuffer::singleton(buffer, cx));
+ let editor = cx.add_window(|cx| build_editor(buffer.clone(), cx));
+
+ editor.update(cx, |editor, cx| {
+ editor.start_transaction_at(now, cx);
+ editor.change_selections(None, cx, |s| s.select_ranges([2..4]));
+
+ editor.insert("cd", cx);
+ editor.end_transaction_at(now, cx);
+ assert_eq!(editor.text(cx), "12cd56");
+ assert_eq!(editor.selections.ranges(cx), vec![4..4]);
+
+ editor.start_transaction_at(now, cx);
+ editor.change_selections(None, cx, |s| s.select_ranges([4..5]));
+ editor.insert("e", cx);
+ editor.end_transaction_at(now, cx);
+ assert_eq!(editor.text(cx), "12cde6");
+ assert_eq!(editor.selections.ranges(cx), vec![5..5]);
+
+ now += group_interval + Duration::from_millis(1);
+ editor.change_selections(None, cx, |s| s.select_ranges([2..2]));
+
+ // Simulate an edit in another editor
+ buffer.update(cx, |buffer, cx| {
+ buffer.start_transaction_at(now, cx);
+ buffer.edit([(0..1, "a")], None, cx);
+ buffer.edit([(1..1, "b")], None, cx);
+ buffer.end_transaction_at(now, cx);
+ });
-// assert_eq!(editor.text(cx), "ab2cde6");
-// assert_eq!(editor.selections.ranges(cx), vec![3..3]);
+ assert_eq!(editor.text(cx), "ab2cde6");
+ assert_eq!(editor.selections.ranges(cx), vec![3..3]);
+
+ // Last transaction happened past the group interval in a different editor.
+ // Undo it individually and don't restore selections.
+ editor.undo(&Undo, cx);
+ assert_eq!(editor.text(cx), "12cde6");
+ assert_eq!(editor.selections.ranges(cx), vec![2..2]);
+
+ // First two transactions happened within the group interval in this editor.
+ // Undo them together and restore selections.
+ editor.undo(&Undo, cx);
+ editor.undo(&Undo, cx); // Undo stack is empty here, so this is a no-op.
+ assert_eq!(editor.text(cx), "123456");
+ assert_eq!(editor.selections.ranges(cx), vec![0..0]);
+
+ // Redo the first two transactions together.
+ editor.redo(&Redo, cx);
+ assert_eq!(editor.text(cx), "12cde6");
+ assert_eq!(editor.selections.ranges(cx), vec![5..5]);
+
+ // Redo the last transaction on its own.
+ editor.redo(&Redo, cx);
+ assert_eq!(editor.text(cx), "ab2cde6");
+ assert_eq!(editor.selections.ranges(cx), vec![6..6]);
+
+ // Test empty transactions.
+ editor.start_transaction_at(now, cx);
+ editor.end_transaction_at(now, cx);
+ editor.undo(&Undo, cx);
+ assert_eq!(editor.text(cx), "12cde6");
+ });
+}
-// // Last transaction happened past the group interval in a different editor.
-// // Undo it individually and don't restore selections.
-// editor.undo(&Undo, cx);
-// assert_eq!(editor.text(cx), "12cde6");
-// assert_eq!(editor.selections.ranges(cx), vec![2..2]);
+#[gpui::test]
+fn test_ime_composition(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// // First two transactions happened within the group interval in this editor.
-// // Undo them together and restore selections.
-// editor.undo(&Undo, cx);
-// editor.undo(&Undo, cx); // Undo stack is empty here, so this is a no-op.
-// assert_eq!(editor.text(cx), "123456");
-// assert_eq!(editor.selections.ranges(cx), vec![0..0]);
-
-// // Redo the first two transactions together.
-// editor.redo(&Redo, cx);
-// assert_eq!(editor.text(cx), "12cde6");
-// assert_eq!(editor.selections.ranges(cx), vec![5..5]);
-
-// // Redo the last transaction on its own.
-// editor.redo(&Redo, cx);
-// assert_eq!(editor.text(cx), "ab2cde6");
-// assert_eq!(editor.selections.ranges(cx), vec![6..6]);
-
-// // Test empty transactions.
-// editor.start_transaction_at(now, cx);
-// editor.end_transaction_at(now, cx);
-// editor.undo(&Undo, cx);
-// assert_eq!(editor.text(cx), "12cde6");
-// });
-// }
+ let buffer = cx.build_model(|cx| {
+ let mut buffer = language::Buffer::new(0, cx.entity_id().as_u64(), "abcde");
+ // Ensure automatic grouping doesn't occur.
+ buffer.set_group_interval(Duration::ZERO);
+ buffer
+ });
-// #[gpui::test]
-// fn test_ime_composition(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
+ let buffer = cx.build_model(|cx| MultiBuffer::singleton(buffer, cx));
+ cx.add_window(|cx| {
+ let mut editor = build_editor(buffer.clone(), cx);
+
+ // Start a new IME composition.
+ editor.replace_and_mark_text_in_range(Some(0..1), "à", None, cx);
+ editor.replace_and_mark_text_in_range(Some(0..1), "á", None, cx);
+ editor.replace_and_mark_text_in_range(Some(0..1), "ä", None, cx);
+ assert_eq!(editor.text(cx), "äbcde");
+ assert_eq!(
+ editor.marked_text_ranges(cx),
+ Some(vec![OffsetUtf16(0)..OffsetUtf16(1)])
+ );
+
+ // Finalize IME composition.
+ editor.replace_text_in_range(None, "ā", cx);
+ assert_eq!(editor.text(cx), "ābcde");
+ assert_eq!(editor.marked_text_ranges(cx), None);
+
+ // IME composition edits are grouped and are undone/redone at once.
+ editor.undo(&Default::default(), cx);
+ assert_eq!(editor.text(cx), "abcde");
+ assert_eq!(editor.marked_text_ranges(cx), None);
+ editor.redo(&Default::default(), cx);
+ assert_eq!(editor.text(cx), "ābcde");
+ assert_eq!(editor.marked_text_ranges(cx), None);
+
+ // Start a new IME composition.
+ editor.replace_and_mark_text_in_range(Some(0..1), "à", None, cx);
+ assert_eq!(
+ editor.marked_text_ranges(cx),
+ Some(vec![OffsetUtf16(0)..OffsetUtf16(1)])
+ );
+
+ // Undoing during an IME composition cancels it.
+ editor.undo(&Default::default(), cx);
+ assert_eq!(editor.text(cx), "ābcde");
+ assert_eq!(editor.marked_text_ranges(cx), None);
+
+ // Start a new IME composition with an invalid marked range, ensuring it gets clipped.
+ editor.replace_and_mark_text_in_range(Some(4..999), "è", None, cx);
+ assert_eq!(editor.text(cx), "ābcdè");
+ assert_eq!(
+ editor.marked_text_ranges(cx),
+ Some(vec![OffsetUtf16(4)..OffsetUtf16(5)])
+ );
+
+ // Finalize IME composition with an invalid replacement range, ensuring it gets clipped.
+ editor.replace_text_in_range(Some(4..999), "ę", cx);
+ assert_eq!(editor.text(cx), "ābcdę");
+ assert_eq!(editor.marked_text_ranges(cx), None);
+
+ // Start a new IME composition with multiple cursors.
+ editor.change_selections(None, cx, |s| {
+ s.select_ranges([
+ OffsetUtf16(1)..OffsetUtf16(1),
+ OffsetUtf16(3)..OffsetUtf16(3),
+ OffsetUtf16(5)..OffsetUtf16(5),
+ ])
+ });
+ editor.replace_and_mark_text_in_range(Some(4..5), "XYZ", None, cx);
+ assert_eq!(editor.text(cx), "XYZbXYZdXYZ");
+ assert_eq!(
+ editor.marked_text_ranges(cx),
+ Some(vec![
+ OffsetUtf16(0)..OffsetUtf16(3),
+ OffsetUtf16(4)..OffsetUtf16(7),
+ OffsetUtf16(8)..OffsetUtf16(11)
+ ])
+ );
+
+ // Ensure the newly-marked range gets treated as relative to the previously-marked ranges.
+ editor.replace_and_mark_text_in_range(Some(1..2), "1", None, cx);
+ assert_eq!(editor.text(cx), "X1ZbX1ZdX1Z");
+ assert_eq!(
+ editor.marked_text_ranges(cx),
+ Some(vec![
+ OffsetUtf16(1)..OffsetUtf16(2),
+ OffsetUtf16(5)..OffsetUtf16(6),
+ OffsetUtf16(9)..OffsetUtf16(10)
+ ])
+ );
+
+ // Finalize IME composition with multiple cursors.
+ editor.replace_text_in_range(Some(9..10), "2", cx);
+ assert_eq!(editor.text(cx), "X2ZbX2ZdX2Z");
+ assert_eq!(editor.marked_text_ranges(cx), None);
+
+ editor
+ });
+}
-// let buffer = cx.add_model(|cx| {
-// let mut buffer = language::Buffer::new(0, cx.model_id() as u64, "abcde");
-// // Ensure automatic grouping doesn't occur.
-// buffer.set_group_interval(Duration::ZERO);
-// buffer
-// });
+#[gpui::test]
+fn test_selection_with_mouse(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// let buffer = cx.add_model(|cx| MultiBuffer::singleton(buffer, cx));
-// cx.add_window(|cx| {
-// let mut editor = build_editor(buffer.clone(), cx);
+ let editor = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("aaaaaa\nbbbbbb\ncccccc\nddddddd\n", cx);
+ build_editor(buffer, cx)
+ });
-// // Start a new IME composition.
-// editor.replace_and_mark_text_in_range(Some(0..1), "à", None, cx);
-// editor.replace_and_mark_text_in_range(Some(0..1), "á", None, cx);
-// editor.replace_and_mark_text_in_range(Some(0..1), "ä", None, cx);
-// assert_eq!(editor.text(cx), "äbcde");
-// assert_eq!(
-// editor.marked_text_ranges(cx),
-// Some(vec![OffsetUtf16(0)..OffsetUtf16(1)])
-// );
+ editor.update(cx, |view, cx| {
+ view.begin_selection(DisplayPoint::new(2, 2), false, 1, cx);
+ });
+ assert_eq!(
+ editor
+ .update(cx, |view, cx| view.selections.display_ranges(cx))
+ .unwrap(),
+ [DisplayPoint::new(2, 2)..DisplayPoint::new(2, 2)]
+ );
+
+ editor.update(cx, |view, cx| {
+ view.update_selection(DisplayPoint::new(3, 3), 0, gpui::Point::<f32>::zero(), cx);
+ });
-// // Finalize IME composition.
-// editor.replace_text_in_range(None, "ā", cx);
-// assert_eq!(editor.text(cx), "ābcde");
-// assert_eq!(editor.marked_text_ranges(cx), None);
+ assert_eq!(
+ editor
+ .update(cx, |view, cx| view.selections.display_ranges(cx))
+ .unwrap(),
+ [DisplayPoint::new(2, 2)..DisplayPoint::new(3, 3)]
+ );
-// // IME composition edits are grouped and are undone/redone at once.
-// editor.undo(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "abcde");
-// assert_eq!(editor.marked_text_ranges(cx), None);
-// editor.redo(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "ābcde");
-// assert_eq!(editor.marked_text_ranges(cx), None);
-
-// // Start a new IME composition.
-// editor.replace_and_mark_text_in_range(Some(0..1), "à", None, cx);
-// assert_eq!(
-// editor.marked_text_ranges(cx),
-// Some(vec![OffsetUtf16(0)..OffsetUtf16(1)])
-// );
+ editor.update(cx, |view, cx| {
+ view.update_selection(DisplayPoint::new(1, 1), 0, gpui::Point::<f32>::zero(), cx);
+ });
-// // Undoing during an IME composition cancels it.
-// editor.undo(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "ābcde");
-// assert_eq!(editor.marked_text_ranges(cx), None);
+ assert_eq!(
+ editor
+ .update(cx, |view, cx| view.selections.display_ranges(cx))
+ .unwrap(),
+ [DisplayPoint::new(2, 2)..DisplayPoint::new(1, 1)]
+ );
-// // Start a new IME composition with an invalid marked range, ensuring it gets clipped.
-// editor.replace_and_mark_text_in_range(Some(4..999), "è", None, cx);
-// assert_eq!(editor.text(cx), "ābcdè");
-// assert_eq!(
-// editor.marked_text_ranges(cx),
-// Some(vec![OffsetUtf16(4)..OffsetUtf16(5)])
-// );
+ editor.update(cx, |view, cx| {
+ view.end_selection(cx);
+ view.update_selection(DisplayPoint::new(3, 3), 0, gpui::Point::<f32>::zero(), cx);
+ });
-// // Finalize IME composition with an invalid replacement range, ensuring it gets clipped.
-// editor.replace_text_in_range(Some(4..999), "ę", cx);
-// assert_eq!(editor.text(cx), "ābcdę");
-// assert_eq!(editor.marked_text_ranges(cx), None);
+ assert_eq!(
+ editor
+ .update(cx, |view, cx| view.selections.display_ranges(cx))
+ .unwrap(),
+ [DisplayPoint::new(2, 2)..DisplayPoint::new(1, 1)]
+ );
-// // Start a new IME composition with multiple cursors.
-// editor.change_selections(None, cx, |s| {
-// s.select_ranges([
-// OffsetUtf16(1)..OffsetUtf16(1),
-// OffsetUtf16(3)..OffsetUtf16(3),
-// OffsetUtf16(5)..OffsetUtf16(5),
-// ])
-// });
-// editor.replace_and_mark_text_in_range(Some(4..5), "XYZ", None, cx);
-// assert_eq!(editor.text(cx), "XYZbXYZdXYZ");
-// assert_eq!(
-// editor.marked_text_ranges(cx),
-// Some(vec![
-// OffsetUtf16(0)..OffsetUtf16(3),
-// OffsetUtf16(4)..OffsetUtf16(7),
-// OffsetUtf16(8)..OffsetUtf16(11)
-// ])
-// );
+ editor.update(cx, |view, cx| {
+ view.begin_selection(DisplayPoint::new(3, 3), true, 1, cx);
+ view.update_selection(DisplayPoint::new(0, 0), 0, gpui::Point::<f32>::zero(), cx);
+ });
-// // Ensure the newly-marked range gets treated as relative to the previously-marked ranges.
-// editor.replace_and_mark_text_in_range(Some(1..2), "1", None, cx);
-// assert_eq!(editor.text(cx), "X1ZbX1ZdX1Z");
-// assert_eq!(
-// editor.marked_text_ranges(cx),
-// Some(vec![
-// OffsetUtf16(1)..OffsetUtf16(2),
-// OffsetUtf16(5)..OffsetUtf16(6),
-// OffsetUtf16(9)..OffsetUtf16(10)
-// ])
-// );
+ assert_eq!(
+ editor
+ .update(cx, |view, cx| view.selections.display_ranges(cx))
+ .unwrap(),
+ [
+ DisplayPoint::new(2, 2)..DisplayPoint::new(1, 1),
+ DisplayPoint::new(3, 3)..DisplayPoint::new(0, 0)
+ ]
+ );
+
+ editor.update(cx, |view, cx| {
+ view.end_selection(cx);
+ });
-// // Finalize IME composition with multiple cursors.
-// editor.replace_text_in_range(Some(9..10), "2", cx);
-// assert_eq!(editor.text(cx), "X2ZbX2ZdX2Z");
-// assert_eq!(editor.marked_text_ranges(cx), None);
+ assert_eq!(
+ editor
+ .update(cx, |view, cx| view.selections.display_ranges(cx))
+ .unwrap(),
+ [DisplayPoint::new(3, 3)..DisplayPoint::new(0, 0)]
+ );
+}
-// editor
-// });
-// }
+#[gpui::test]
+fn test_canceling_pending_selection(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// #[gpui::test]
-// fn test_selection_with_mouse(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("aaaaaa\nbbbbbb\ncccccc\ndddddd\n", cx);
+ build_editor(buffer, cx)
+ });
-// let editor = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("aaaaaa\nbbbbbb\ncccccc\nddddddd\n", cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-// editor.update(cx, |view, cx| {
-// view.begin_selection(DisplayPoint::new(2, 2), false, 1, cx);
-// });
-// assert_eq!(
-// editor.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// [DisplayPoint::new(2, 2)..DisplayPoint::new(2, 2)]
-// );
+ view.update(cx, |view, cx| {
+ view.begin_selection(DisplayPoint::new(2, 2), false, 1, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ [DisplayPoint::new(2, 2)..DisplayPoint::new(2, 2)]
+ );
+ });
-// editor.update(cx, |view, cx| {
-// view.update_selection(DisplayPoint::new(3, 3), 0, Point<Pixels>::zero(), cx);
-// });
+ view.update(cx, |view, cx| {
+ view.update_selection(DisplayPoint::new(3, 3), 0, gpui::Point::<f32>::zero(), cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ [DisplayPoint::new(2, 2)..DisplayPoint::new(3, 3)]
+ );
+ });
-// assert_eq!(
-// editor.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// [DisplayPoint::new(2, 2)..DisplayPoint::new(3, 3)]
-// );
+ view.update(cx, |view, cx| {
+ view.cancel(&Cancel, cx);
+ view.update_selection(DisplayPoint::new(1, 1), 0, gpui::Point::<f32>::zero(), cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ [DisplayPoint::new(2, 2)..DisplayPoint::new(3, 3)]
+ );
+ });
+}
-// editor.update(cx, |view, cx| {
-// view.update_selection(DisplayPoint::new(1, 1), 0, Point<Pixels>::zero(), cx);
-// });
+#[gpui::test]
+fn test_clone(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let (text, selection_ranges) = marked_text_ranges(
+ indoc! {"
+ one
+ two
+ threeˇ
+ four
+ fiveˇ
+ "},
+ true,
+ );
+
+ let editor = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple(&text, cx);
+ build_editor(buffer, cx)
+ });
-// assert_eq!(
-// editor.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// [DisplayPoint::new(2, 2)..DisplayPoint::new(1, 1)]
-// );
+ editor.update(cx, |editor, cx| {
+ editor.change_selections(None, cx, |s| s.select_ranges(selection_ranges.clone()));
+ editor.fold_ranges(
+ [
+ Point::new(1, 0)..Point::new(2, 0),
+ Point::new(3, 0)..Point::new(4, 0),
+ ],
+ true,
+ cx,
+ );
+ });
-// editor.update(cx, |view, cx| {
-// view.end_selection(cx);
-// view.update_selection(DisplayPoint::new(3, 3), 0, Point<Pixels>::zero(), cx);
-// });
+ let cloned_editor = editor
+ .update(cx, |editor, cx| {
+ cx.open_window(Default::default(), |cx| {
+ cx.build_view(|cx| editor.clone(cx))
+ })
+ })
+ .unwrap();
+
+ let snapshot = editor.update(cx, |e, cx| e.snapshot(cx)).unwrap();
+ let cloned_snapshot = cloned_editor.update(cx, |e, cx| e.snapshot(cx)).unwrap();
+
+ assert_eq!(
+ cloned_editor
+ .update(cx, |e, cx| e.display_text(cx))
+ .unwrap(),
+ editor.update(cx, |e, cx| e.display_text(cx)).unwrap()
+ );
+ assert_eq!(
+ cloned_snapshot
+ .folds_in_range(0..text.len())
+ .collect::<Vec<_>>(),
+ snapshot.folds_in_range(0..text.len()).collect::<Vec<_>>(),
+ );
+ assert_set_eq!(
+ cloned_editor
+ .update(cx, |editor, cx| editor.selections.ranges::<Point>(cx))
+ .unwrap(),
+ editor
+ .update(cx, |editor, cx| editor.selections.ranges(cx))
+ .unwrap()
+ );
+ assert_set_eq!(
+ cloned_editor
+ .update(cx, |e, cx| e.selections.display_ranges(cx))
+ .unwrap(),
+ editor
+ .update(cx, |e, cx| e.selections.display_ranges(cx))
+ .unwrap()
+ );
+}
-// assert_eq!(
-// editor.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// [DisplayPoint::new(2, 2)..DisplayPoint::new(1, 1)]
-// );
+//todo!(editor navigate)
+// #[gpui::test]
+// async fn test_navigation_history(cx: &mut TestAppContext) {
+// init_test(cx, |_| {});
-// editor.update(cx, |view, cx| {
-// view.begin_selection(DisplayPoint::new(3, 3), true, 1, cx);
-// view.update_selection(DisplayPoint::new(0, 0), 0, Point<Pixels>::zero(), cx);
-// });
+// use workspace::item::Item;
-// assert_eq!(
-// editor.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// [
-// DisplayPoint::new(2, 2)..DisplayPoint::new(1, 1),
-// DisplayPoint::new(3, 3)..DisplayPoint::new(0, 0)
-// ]
-// );
+// let fs = FakeFs::new(cx.executor());
+// let project = Project::test(fs, [], cx).await;
+// let workspace = cx.add_window(|cx| Workspace::test_new(project, cx));
+// let pane = workspace
+// .update(cx, |workspace, _| workspace.active_pane().clone())
+// .unwrap();
-// editor.update(cx, |view, cx| {
-// view.end_selection(cx);
-// });
+// workspace.update(cx, |v, cx| {
+// cx.build_view(|cx| {
+// let buffer = MultiBuffer::build_simple(&sample_text(300, 5, 'a'), cx);
+// let mut editor = build_editor(buffer.clone(), cx);
+// let handle = cx.view();
+// editor.set_nav_history(Some(pane.read(cx).nav_history_for_item(&handle)));
-// assert_eq!(
-// editor.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// [DisplayPoint::new(3, 3)..DisplayPoint::new(0, 0)]
-// );
-// }
+// fn pop_history(editor: &mut Editor, cx: &mut WindowContext) -> Option<NavigationEntry> {
+// editor.nav_history.as_mut().unwrap().pop_backward(cx)
+// }
-// #[gpui::test]
-// fn test_canceling_pending_selection(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
+// // Move the cursor a small distance.
+// // Nothing is added to the navigation history.
+// editor.change_selections(None, cx, |s| {
+// s.select_display_ranges([DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0)])
+// });
+// editor.change_selections(None, cx, |s| {
+// s.select_display_ranges([DisplayPoint::new(3, 0)..DisplayPoint::new(3, 0)])
+// });
+// assert!(pop_history(&mut editor, cx).is_none());
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("aaaaaa\nbbbbbb\ncccccc\ndddddd\n", cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
+// // Move the cursor a large distance.
+// // The history can jump back to the previous position.
+// editor.change_selections(None, cx, |s| {
+// s.select_display_ranges([DisplayPoint::new(13, 0)..DisplayPoint::new(13, 3)])
+// });
+// let nav_entry = pop_history(&mut editor, cx).unwrap();
+// editor.navigate(nav_entry.data.unwrap(), cx);
+// assert_eq!(nav_entry.item.id(), cx.entity_id());
+// assert_eq!(
+// editor.selections.display_ranges(cx),
+// &[DisplayPoint::new(3, 0)..DisplayPoint::new(3, 0)]
+// );
+// assert!(pop_history(&mut editor, cx).is_none());
-// view.update(cx, |view, cx| {
-// view.begin_selection(DisplayPoint::new(2, 2), false, 1, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// [DisplayPoint::new(2, 2)..DisplayPoint::new(2, 2)]
-// );
-// });
+// // Move the cursor a small distance via the mouse.
+// // Nothing is added to the navigation history.
+// editor.begin_selection(DisplayPoint::new(5, 0), false, 1, cx);
+// editor.end_selection(cx);
+// assert_eq!(
+// editor.selections.display_ranges(cx),
+// &[DisplayPoint::new(5, 0)..DisplayPoint::new(5, 0)]
+// );
+// assert!(pop_history(&mut editor, cx).is_none());
-// view.update(cx, |view, cx| {
-// view.update_selection(DisplayPoint::new(3, 3), 0, Point<Pixels>::zero(), cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// [DisplayPoint::new(2, 2)..DisplayPoint::new(3, 3)]
-// );
-// });
+// // Move the cursor a large distance via the mouse.
+// // The history can jump back to the previous position.
+// editor.begin_selection(DisplayPoint::new(15, 0), false, 1, cx);
+// editor.end_selection(cx);
+// assert_eq!(
+// editor.selections.display_ranges(cx),
+// &[DisplayPoint::new(15, 0)..DisplayPoint::new(15, 0)]
+// );
+// let nav_entry = pop_history(&mut editor, cx).unwrap();
+// editor.navigate(nav_entry.data.unwrap(), cx);
+// assert_eq!(nav_entry.item.id(), cx.entity_id());
+// assert_eq!(
+// editor.selections.display_ranges(cx),
+// &[DisplayPoint::new(5, 0)..DisplayPoint::new(5, 0)]
+// );
+// assert!(pop_history(&mut editor, cx).is_none());
+
+// // Set scroll position to check later
+// editor.set_scroll_position(gpui::Point::<f32>::new(5.5, 5.5), cx);
+// let original_scroll_position = editor.scroll_manager.anchor();
+
+// // Jump to the end of the document and adjust scroll
+// editor.move_to_end(&MoveToEnd, cx);
+// editor.set_scroll_position(gpui::Point::<f32>::new(-2.5, -0.5), cx);
+// assert_ne!(editor.scroll_manager.anchor(), original_scroll_position);
+
+// let nav_entry = pop_history(&mut editor, cx).unwrap();
+// editor.navigate(nav_entry.data.unwrap(), cx);
+// assert_eq!(editor.scroll_manager.anchor(), original_scroll_position);
+
+// // Ensure we don't panic when navigation data contains invalid anchors *and* points.
+// let mut invalid_anchor = editor.scroll_manager.anchor().anchor;
+// invalid_anchor.text_anchor.buffer_id = Some(999);
+// let invalid_point = Point::new(9999, 0);
+// editor.navigate(
+// Box::new(NavigationData {
+// cursor_anchor: invalid_anchor,
+// cursor_position: invalid_point,
+// scroll_anchor: ScrollAnchor {
+// anchor: invalid_anchor,
+// offset: Default::default(),
+// },
+// scroll_top_row: invalid_point.row,
+// }),
+// cx,
+// );
+// assert_eq!(
+// editor.selections.display_ranges(cx),
+// &[editor.max_point(cx)..editor.max_point(cx)]
+// );
+// assert_eq!(
+// editor.scroll_position(cx),
+// gpui::Point::new(0., editor.max_point(cx).row() as f32)
+// );
-// view.update(cx, |view, cx| {
-// view.cancel(&Cancel, cx);
-// view.update_selection(DisplayPoint::new(1, 1), 0, Point<Pixels>::zero(), cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// [DisplayPoint::new(2, 2)..DisplayPoint::new(3, 3)]
-// );
+// editor
+// })
// });
// }
-// #[gpui::test]
-// fn test_clone(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
+#[gpui::test]
+fn test_cancel(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// let (text, selection_ranges) = marked_text_ranges(
-// indoc! {"
-// one
-// two
-// threeˇ
-// four
-// fiveˇ
-// "},
-// true,
-// );
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("aaaaaa\nbbbbbb\ncccccc\ndddddd\n", cx);
+ build_editor(buffer, cx)
+ });
-// let editor = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple(&text, cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
+ view.update(cx, |view, cx| {
+ view.begin_selection(DisplayPoint::new(3, 4), false, 1, cx);
+ view.update_selection(DisplayPoint::new(1, 1), 0, gpui::Point::<f32>::zero(), cx);
+ view.end_selection(cx);
+
+ view.begin_selection(DisplayPoint::new(0, 1), true, 1, cx);
+ view.update_selection(DisplayPoint::new(0, 3), 0, gpui::Point::<f32>::zero(), cx);
+ view.end_selection(cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ [
+ DisplayPoint::new(0, 1)..DisplayPoint::new(0, 3),
+ DisplayPoint::new(3, 4)..DisplayPoint::new(1, 1),
+ ]
+ );
+ });
-// editor.update(cx, |editor, cx| {
-// editor.change_selections(None, cx, |s| s.select_ranges(selection_ranges.clone()));
-// editor.fold_ranges(
-// [
-// Point::new(1, 0)..Point::new(2, 0),
-// Point::new(3, 0)..Point::new(4, 0),
-// ],
-// true,
-// cx,
-// );
-// });
+ view.update(cx, |view, cx| {
+ view.cancel(&Cancel, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ [DisplayPoint::new(3, 4)..DisplayPoint::new(1, 1)]
+ );
+ });
-// let cloned_editor = editor
-// .update(cx, |editor, cx| {
-// cx.add_window(Default::default(), |cx| editor.clone(cx))
-// })
-// .root(cx);
+ view.update(cx, |view, cx| {
+ view.cancel(&Cancel, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ [DisplayPoint::new(1, 1)..DisplayPoint::new(1, 1)]
+ );
+ });
+}
-// let snapshot = editor.update(cx, |e, cx| e.snapshot(cx));
-// let cloned_snapshot = cloned_editor.update(cx, |e, cx| e.snapshot(cx));
+#[gpui::test]
+fn test_fold_action(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple(
+ &"
+ impl Foo {
+ // Hello!
+
+ fn a() {
+ 1
+ }
+
+ fn b() {
+ 2
+ }
+
+ fn c() {
+ 3
+ }
+ }
+ "
+ .unindent(),
+ cx,
+ );
+ build_editor(buffer.clone(), cx)
+ });
-// assert_eq!(
-// cloned_editor.update(cx, |e, cx| e.display_text(cx)),
-// editor.update(cx, |e, cx| e.display_text(cx))
-// );
-// assert_eq!(
-// cloned_snapshot
-// .folds_in_range(0..text.len())
-// .collect::<Vec<_>>(),
-// snapshot.folds_in_range(0..text.len()).collect::<Vec<_>>(),
-// );
-// assert_set_eq!(
-// cloned_editor.read_with(cx, |editor, cx| editor.selections.ranges::<Point>(cx)),
-// editor.read_with(cx, |editor, cx| editor.selections.ranges(cx))
-// );
-// assert_set_eq!(
-// cloned_editor.update(cx, |e, cx| e.selections.display_ranges(cx)),
-// editor.update(cx, |e, cx| e.selections.display_ranges(cx))
-// );
-// }
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([DisplayPoint::new(8, 0)..DisplayPoint::new(12, 0)]);
+ });
+ view.fold(&Fold, cx);
+ assert_eq!(
+ view.display_text(cx),
+ "
+ impl Foo {
+ // Hello!
+
+ fn a() {
+ 1
+ }
+
+ fn b() {⋯
+ }
+
+ fn c() {⋯
+ }
+ }
+ "
+ .unindent(),
+ );
+
+ view.fold(&Fold, cx);
+ assert_eq!(
+ view.display_text(cx),
+ "
+ impl Foo {⋯
+ }
+ "
+ .unindent(),
+ );
+
+ view.unfold_lines(&UnfoldLines, cx);
+ assert_eq!(
+ view.display_text(cx),
+ "
+ impl Foo {
+ // Hello!
+
+ fn a() {
+ 1
+ }
+
+ fn b() {⋯
+ }
+
+ fn c() {⋯
+ }
+ }
+ "
+ .unindent(),
+ );
+
+ view.unfold_lines(&UnfoldLines, cx);
+ assert_eq!(view.display_text(cx), view.buffer.read(cx).read(cx).text());
+ });
+}
-// #[gpui::test]
-// async fn test_navigation_history(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
+#[gpui::test]
+fn test_move_cursor(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let buffer = cx.update(|cx| MultiBuffer::build_simple(&sample_text(6, 6, 'a'), cx));
+ let view = cx.add_window(|cx| build_editor(buffer.clone(), cx));
+
+ buffer.update(cx, |buffer, cx| {
+ buffer.edit(
+ vec![
+ (Point::new(1, 0)..Point::new(1, 0), "\t"),
+ (Point::new(1, 1)..Point::new(1, 1), "\t"),
+ ],
+ None,
+ cx,
+ );
+ });
+ view.update(cx, |view, cx| {
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0)]
+ );
+
+ view.move_down(&MoveDown, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0)]
+ );
+
+ view.move_right(&MoveRight, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[DisplayPoint::new(1, 4)..DisplayPoint::new(1, 4)]
+ );
+
+ view.move_left(&MoveLeft, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0)]
+ );
+
+ view.move_up(&MoveUp, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0)]
+ );
+
+ view.move_to_end(&MoveToEnd, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[DisplayPoint::new(5, 6)..DisplayPoint::new(5, 6)]
+ );
+
+ view.move_to_beginning(&MoveToBeginning, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0)]
+ );
+
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([DisplayPoint::new(0, 1)..DisplayPoint::new(0, 2)]);
+ });
+ view.select_to_beginning(&SelectToBeginning, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[DisplayPoint::new(0, 1)..DisplayPoint::new(0, 0)]
+ );
+
+ view.select_to_end(&SelectToEnd, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[DisplayPoint::new(0, 1)..DisplayPoint::new(5, 6)]
+ );
+ });
+}
-// cx.set_global(DragAndDrop::<Workspace>::default());
-// use workspace::item::Item;
+#[gpui::test]
+fn test_move_cursor_multibyte(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// let fs = FakeFs::new(cx.background());
-// let project = Project::test(fs, [], cx).await;
-// let window = cx.add_window(|cx| Workspace::test_new(project, cx));
-// let workspace = window.root(cx);
-// let pane = workspace.read_with(cx, |workspace, _| workspace.active_pane().clone());
-// window.add_view(cx, |cx| {
-// let buffer = MultiBuffer::build_simple(&sample_text(300, 5, 'a'), cx);
-// let mut editor = build_editor(buffer.clone(), cx);
-// let handle = cx.handle();
-// editor.set_nav_history(Some(pane.read(cx).nav_history_for_item(&handle)));
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("ⓐⓑⓒⓓⓔ\nabcde\nαβγδε", cx);
+ build_editor(buffer.clone(), cx)
+ });
-// fn pop_history(editor: &mut Editor, cx: &mut WindowContext) -> Option<NavigationEntry> {
-// editor.nav_history.as_mut().unwrap().pop_backward(cx)
-// }
+ assert_eq!('ⓐ'.len_utf8(), 3);
+ assert_eq!('α'.len_utf8(), 2);
+
+ view.update(cx, |view, cx| {
+ view.fold_ranges(
+ vec![
+ Point::new(0, 6)..Point::new(0, 12),
+ Point::new(1, 2)..Point::new(1, 4),
+ Point::new(2, 4)..Point::new(2, 8),
+ ],
+ true,
+ cx,
+ );
+ assert_eq!(view.display_text(cx), "ⓐⓑ⋯ⓔ\nab⋯e\nαβ⋯ε");
+
+ view.move_right(&MoveRight, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(0, "ⓐ".len())]
+ );
+ view.move_right(&MoveRight, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(0, "ⓐⓑ".len())]
+ );
+ view.move_right(&MoveRight, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(0, "ⓐⓑ⋯".len())]
+ );
+
+ view.move_down(&MoveDown, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(1, "ab⋯e".len())]
+ );
+ view.move_left(&MoveLeft, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(1, "ab⋯".len())]
+ );
+ view.move_left(&MoveLeft, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(1, "ab".len())]
+ );
+ view.move_left(&MoveLeft, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(1, "a".len())]
+ );
+
+ view.move_down(&MoveDown, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(2, "α".len())]
+ );
+ view.move_right(&MoveRight, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(2, "αβ".len())]
+ );
+ view.move_right(&MoveRight, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(2, "αβ⋯".len())]
+ );
+ view.move_right(&MoveRight, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(2, "αβ⋯ε".len())]
+ );
+
+ view.move_up(&MoveUp, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(1, "ab⋯e".len())]
+ );
+ view.move_down(&MoveDown, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(2, "αβ⋯ε".len())]
+ );
+ view.move_up(&MoveUp, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(1, "ab⋯e".len())]
+ );
+
+ view.move_up(&MoveUp, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(0, "ⓐⓑ".len())]
+ );
+ view.move_left(&MoveLeft, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(0, "ⓐ".len())]
+ );
+ view.move_left(&MoveLeft, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[empty_range(0, "".len())]
+ );
+ });
+}
-// // Move the cursor a small distance.
-// // Nothing is added to the navigation history.
-// editor.change_selections(None, cx, |s| {
-// s.select_display_ranges([DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0)])
-// });
-// editor.change_selections(None, cx, |s| {
-// s.select_display_ranges([DisplayPoint::new(3, 0)..DisplayPoint::new(3, 0)])
-// });
-// assert!(pop_history(&mut editor, cx).is_none());
+//todo!(finish editor tests)
+// #[gpui::test]
+// fn test_move_cursor_different_line_lengths(cx: &mut TestAppContext) {
+// init_test(cx, |_| {});
-// // Move the cursor a large distance.
-// // The history can jump back to the previous position.
-// editor.change_selections(None, cx, |s| {
-// s.select_display_ranges([DisplayPoint::new(13, 0)..DisplayPoint::new(13, 3)])
+// let view = cx.add_window(|cx| {
+// let buffer = MultiBuffer::build_simple("ⓐⓑⓒⓓⓔ\nabcd\nαβγ\nabcd\nⓐⓑⓒⓓⓔ\n", cx);
+// build_editor(buffer.clone(), cx)
+// });
+// view.update(cx, |view, cx| {
+// view.change_selections(None, cx, |s| {
+// s.select_display_ranges([empty_range(0, "ⓐⓑⓒⓓⓔ".len())]);
// });
-// let nav_entry = pop_history(&mut editor, cx).unwrap();
-// editor.navigate(nav_entry.data.unwrap(), cx);
-// assert_eq!(nav_entry.item.id(), cx.view_id());
+// view.move_down(&MoveDown, cx);
// assert_eq!(
-// editor.selections.display_ranges(cx),
-// &[DisplayPoint::new(3, 0)..DisplayPoint::new(3, 0)]
+// view.selections.display_ranges(cx),
+// &[empty_range(1, "abcd".len())]
// );
-// assert!(pop_history(&mut editor, cx).is_none());
-// // Move the cursor a small distance via the mouse.
-// // Nothing is added to the navigation history.
-// editor.begin_selection(DisplayPoint::new(5, 0), false, 1, cx);
-// editor.end_selection(cx);
+// view.move_down(&MoveDown, cx);
// assert_eq!(
-// editor.selections.display_ranges(cx),
-// &[DisplayPoint::new(5, 0)..DisplayPoint::new(5, 0)]
+// view.selections.display_ranges(cx),
+// &[empty_range(2, "αβγ".len())]
// );
-// assert!(pop_history(&mut editor, cx).is_none());
-// // Move the cursor a large distance via the mouse.
-// // The history can jump back to the previous position.
-// editor.begin_selection(DisplayPoint::new(15, 0), false, 1, cx);
-// editor.end_selection(cx);
-// assert_eq!(
-// editor.selections.display_ranges(cx),
-// &[DisplayPoint::new(15, 0)..DisplayPoint::new(15, 0)]
-// );
-// let nav_entry = pop_history(&mut editor, cx).unwrap();
-// editor.navigate(nav_entry.data.unwrap(), cx);
-// assert_eq!(nav_entry.item.id(), cx.view_id());
-// assert_eq!(
-// editor.selections.display_ranges(cx),
-// &[DisplayPoint::new(5, 0)..DisplayPoint::new(5, 0)]
-// );
-// assert!(pop_history(&mut editor, cx).is_none());
-
-// // Set scroll position to check later
-// editor.set_scroll_position(Point<Pixels>::new(5.5, 5.5), cx);
-// let original_scroll_position = editor.scroll_manager.anchor();
-
-// // Jump to the end of the document and adjust scroll
-// editor.move_to_end(&MoveToEnd, cx);
-// editor.set_scroll_position(Point<Pixels>::new(-2.5, -0.5), cx);
-// assert_ne!(editor.scroll_manager.anchor(), original_scroll_position);
-
-// let nav_entry = pop_history(&mut editor, cx).unwrap();
-// editor.navigate(nav_entry.data.unwrap(), cx);
-// assert_eq!(editor.scroll_manager.anchor(), original_scroll_position);
-
-// // Ensure we don't panic when navigation data contains invalid anchors *and* points.
-// let mut invalid_anchor = editor.scroll_manager.anchor().anchor;
-// invalid_anchor.text_anchor.buffer_id = Some(999);
-// let invalid_point = Point::new(9999, 0);
-// editor.navigate(
-// Box::new(NavigationData {
-// cursor_anchor: invalid_anchor,
-// cursor_position: invalid_point,
-// scroll_anchor: ScrollAnchor {
-// anchor: invalid_anchor,
-// offset: Default::default(),
-// },
-// scroll_top_row: invalid_point.row,
-// }),
-// cx,
-// );
-// assert_eq!(
-// editor.selections.display_ranges(cx),
-// &[editor.max_point(cx)..editor.max_point(cx)]
-// );
+// view.move_down(&MoveDown, cx);
// assert_eq!(
-// editor.scroll_position(cx),
-// vec2f(0., editor.max_point(cx).row() as f32)
+// view.selections.display_ranges(cx),
+// &[empty_range(3, "abcd".len())]
// );
-// editor
-// });
-// }
-
-// #[gpui::test]
-// fn test_cancel(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("aaaaaa\nbbbbbb\ncccccc\ndddddd\n", cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-
-// view.update(cx, |view, cx| {
-// view.begin_selection(DisplayPoint::new(3, 4), false, 1, cx);
-// view.update_selection(DisplayPoint::new(1, 1), 0, Point<Pixels>::zero(), cx);
-// view.end_selection(cx);
-
-// view.begin_selection(DisplayPoint::new(0, 1), true, 1, cx);
-// view.update_selection(DisplayPoint::new(0, 3), 0, Point<Pixels>::zero(), cx);
-// view.end_selection(cx);
+// view.move_down(&MoveDown, cx);
// assert_eq!(
// view.selections.display_ranges(cx),
-// [
-// DisplayPoint::new(0, 1)..DisplayPoint::new(0, 3),
-// DisplayPoint::new(3, 4)..DisplayPoint::new(1, 1),
-// ]
+// &[empty_range(4, "ⓐⓑⓒⓓⓔ".len())]
// );
-// });
-// view.update(cx, |view, cx| {
-// view.cancel(&Cancel, cx);
+// view.move_up(&MoveUp, cx);
// assert_eq!(
// view.selections.display_ranges(cx),
-// [DisplayPoint::new(3, 4)..DisplayPoint::new(1, 1)]
+// &[empty_range(3, "abcd".len())]
// );
-// });
-// view.update(cx, |view, cx| {
-// view.cancel(&Cancel, cx);
+// view.move_up(&MoveUp, cx);
// assert_eq!(
// view.selections.display_ranges(cx),
-// [DisplayPoint::new(1, 1)..DisplayPoint::new(1, 1)]
+// &[empty_range(2, "αβγ".len())]
// );
// });
// }
-// #[gpui::test]
-// fn test_fold_action(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
+#[gpui::test]
+fn test_beginning_end_of_line(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple(
-// &"
-// impl Foo {
-// // Hello!
-
-// fn a() {
-// 1
-// }
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("abc\n def", cx);
+ build_editor(buffer, cx)
+ });
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
+ DisplayPoint::new(1, 4)..DisplayPoint::new(1, 4),
+ ]);
+ });
+ });
-// fn b() {
-// 2
-// }
+ view.update(cx, |view, cx| {
+ view.move_to_beginning_of_line(&MoveToBeginningOfLine, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[
+ DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0),
+ DisplayPoint::new(1, 2)..DisplayPoint::new(1, 2),
+ ]
+ );
+ });
-// fn c() {
-// 3
-// }
-// }
-// "
-// .unindent(),
-// cx,
-// );
-// build_editor(buffer.clone(), cx)
-// })
-// .root(cx);
+ view.update(cx, |view, cx| {
+ view.move_to_beginning_of_line(&MoveToBeginningOfLine, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[
+ DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0),
+ DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0),
+ ]
+ );
+ });
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([DisplayPoint::new(8, 0)..DisplayPoint::new(12, 0)]);
-// });
-// view.fold(&Fold, cx);
-// assert_eq!(
-// view.display_text(cx),
-// "
-// impl Foo {
-// // Hello!
+ view.update(cx, |view, cx| {
+ view.move_to_beginning_of_line(&MoveToBeginningOfLine, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[
+ DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0),
+ DisplayPoint::new(1, 2)..DisplayPoint::new(1, 2),
+ ]
+ );
+ });
-// fn a() {
-// 1
-// }
+ view.update(cx, |view, cx| {
+ view.move_to_end_of_line(&MoveToEndOfLine, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[
+ DisplayPoint::new(0, 3)..DisplayPoint::new(0, 3),
+ DisplayPoint::new(1, 5)..DisplayPoint::new(1, 5),
+ ]
+ );
+ });
-// fn b() {⋯
-// }
+ // Moving to the end of line again is a no-op.
+ view.update(cx, |view, cx| {
+ view.move_to_end_of_line(&MoveToEndOfLine, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[
+ DisplayPoint::new(0, 3)..DisplayPoint::new(0, 3),
+ DisplayPoint::new(1, 5)..DisplayPoint::new(1, 5),
+ ]
+ );
+ });
-// fn c() {⋯
-// }
-// }
-// "
-// .unindent(),
-// );
+ view.update(cx, |view, cx| {
+ view.move_left(&MoveLeft, cx);
+ view.select_to_beginning_of_line(
+ &SelectToBeginningOfLine {
+ stop_at_soft_wraps: true,
+ },
+ cx,
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[
+ DisplayPoint::new(0, 2)..DisplayPoint::new(0, 0),
+ DisplayPoint::new(1, 4)..DisplayPoint::new(1, 2),
+ ]
+ );
+ });
-// view.fold(&Fold, cx);
-// assert_eq!(
-// view.display_text(cx),
-// "
-// impl Foo {⋯
-// }
-// "
-// .unindent(),
-// );
+ view.update(cx, |view, cx| {
+ view.select_to_beginning_of_line(
+ &SelectToBeginningOfLine {
+ stop_at_soft_wraps: true,
+ },
+ cx,
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[
+ DisplayPoint::new(0, 2)..DisplayPoint::new(0, 0),
+ DisplayPoint::new(1, 4)..DisplayPoint::new(1, 0),
+ ]
+ );
+ });
-// view.unfold_lines(&UnfoldLines, cx);
-// assert_eq!(
-// view.display_text(cx),
-// "
-// impl Foo {
-// // Hello!
+ view.update(cx, |view, cx| {
+ view.select_to_beginning_of_line(
+ &SelectToBeginningOfLine {
+ stop_at_soft_wraps: true,
+ },
+ cx,
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[
+ DisplayPoint::new(0, 2)..DisplayPoint::new(0, 0),
+ DisplayPoint::new(1, 4)..DisplayPoint::new(1, 2),
+ ]
+ );
+ });
-// fn a() {
-// 1
-// }
+ view.update(cx, |view, cx| {
+ view.select_to_end_of_line(
+ &SelectToEndOfLine {
+ stop_at_soft_wraps: true,
+ },
+ cx,
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[
+ DisplayPoint::new(0, 2)..DisplayPoint::new(0, 3),
+ DisplayPoint::new(1, 4)..DisplayPoint::new(1, 5),
+ ]
+ );
+ });
-// fn b() {⋯
-// }
+ view.update(cx, |view, cx| {
+ view.delete_to_end_of_line(&DeleteToEndOfLine, cx);
+ assert_eq!(view.display_text(cx), "ab\n de");
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[
+ DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
+ DisplayPoint::new(1, 4)..DisplayPoint::new(1, 4),
+ ]
+ );
+ });
-// fn c() {⋯
-// }
-// }
-// "
-// .unindent(),
-// );
+ view.update(cx, |view, cx| {
+ view.delete_to_beginning_of_line(&DeleteToBeginningOfLine, cx);
+ assert_eq!(view.display_text(cx), "\n");
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[
+ DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0),
+ DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0),
+ ]
+ );
+ });
+}
-// view.unfold_lines(&UnfoldLines, cx);
-// assert_eq!(view.display_text(cx), view.buffer.read(cx).read(cx).text());
-// });
-// }
+#[gpui::test]
+fn test_prev_next_word_boundary(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("use std::str::{foo, bar}\n\n {baz.qux()}", cx);
+ build_editor(buffer, cx)
+ });
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ DisplayPoint::new(0, 11)..DisplayPoint::new(0, 11),
+ DisplayPoint::new(2, 4)..DisplayPoint::new(2, 4),
+ ])
+ });
+
+ view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
+ assert_selection_ranges("use std::ˇstr::{foo, bar}\n\n {ˇbaz.qux()}", view, cx);
+
+ view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
+ assert_selection_ranges("use stdˇ::str::{foo, bar}\n\n ˇ{baz.qux()}", view, cx);
+
+ view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
+ assert_selection_ranges("use ˇstd::str::{foo, bar}\n\nˇ {baz.qux()}", view, cx);
+
+ view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
+ assert_selection_ranges("ˇuse std::str::{foo, bar}\nˇ\n {baz.qux()}", view, cx);
+
+ view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
+ assert_selection_ranges("ˇuse std::str::{foo, barˇ}\n\n {baz.qux()}", view, cx);
+
+ view.move_to_next_word_end(&MoveToNextWordEnd, cx);
+ assert_selection_ranges("useˇ std::str::{foo, bar}ˇ\n\n {baz.qux()}", view, cx);
+ view.move_to_next_word_end(&MoveToNextWordEnd, cx);
+ assert_selection_ranges("use stdˇ::str::{foo, bar}\nˇ\n {baz.qux()}", view, cx);
+
+ view.move_to_next_word_end(&MoveToNextWordEnd, cx);
+ assert_selection_ranges("use std::ˇstr::{foo, bar}\n\n {ˇbaz.qux()}", view, cx);
+
+ view.move_right(&MoveRight, cx);
+ view.select_to_previous_word_start(&SelectToPreviousWordStart, cx);
+ assert_selection_ranges("use std::«ˇs»tr::{foo, bar}\n\n {«ˇb»az.qux()}", view, cx);
+
+ view.select_to_previous_word_start(&SelectToPreviousWordStart, cx);
+ assert_selection_ranges("use std«ˇ::s»tr::{foo, bar}\n\n «ˇ{b»az.qux()}", view, cx);
+
+ view.select_to_next_word_end(&SelectToNextWordEnd, cx);
+ assert_selection_ranges("use std::«ˇs»tr::{foo, bar}\n\n {«ˇb»az.qux()}", view, cx);
+ });
+}
+
+//todo!(finish editor tests)
// #[gpui::test]
-// fn test_move_cursor(cx: &mut TestAppContext) {
+// fn test_prev_next_word_bounds_with_soft_wrap(cx: &mut TestAppContext) {
// init_test(cx, |_| {});
-// let buffer = cx.update(|cx| MultiBuffer::build_simple(&sample_text(6, 6, 'a'), cx));
-// let view = cx
-// .add_window(|cx| build_editor(buffer.clone(), cx))
-// .root(cx);
-
-// buffer.update(cx, |buffer, cx| {
-// buffer.edit(
-// vec![
-// (Point::new(1, 0)..Point::new(1, 0), "\t"),
-// (Point::new(1, 1)..Point::new(1, 1), "\t"),
-// ],
-// None,
-// cx,
-// );
+// let view = cx.add_window(|cx| {
+// let buffer = MultiBuffer::build_simple("use one::{\n two::three::four::five\n};", cx);
+// build_editor(buffer, cx)
// });
-// view.update(cx, |view, cx| {
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0)]
-// );
-// view.move_down(&MoveDown, cx);
+// view.update(cx, |view, cx| {
+// view.set_wrap_width(Some(140.0.into()), cx);
// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0)]
+// view.display_text(cx),
+// "use one::{\n two::three::\n four::five\n};"
// );
-// view.move_right(&MoveRight, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(1, 4)..DisplayPoint::new(1, 4)]
-// );
+// view.change_selections(None, cx, |s| {
+// s.select_display_ranges([DisplayPoint::new(1, 7)..DisplayPoint::new(1, 7)]);
+// });
-// view.move_left(&MoveLeft, cx);
+// view.move_to_next_word_end(&MoveToNextWordEnd, cx);
// assert_eq!(
// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0)]
+// &[DisplayPoint::new(1, 9)..DisplayPoint::new(1, 9)]
// );
-// view.move_up(&MoveUp, cx);
+// view.move_to_next_word_end(&MoveToNextWordEnd, cx);
// assert_eq!(
// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0)]
+// &[DisplayPoint::new(1, 14)..DisplayPoint::new(1, 14)]
// );
-// view.move_to_end(&MoveToEnd, cx);
+// view.move_to_next_word_end(&MoveToNextWordEnd, cx);
// assert_eq!(
// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(5, 6)..DisplayPoint::new(5, 6)]
+// &[DisplayPoint::new(2, 4)..DisplayPoint::new(2, 4)]
// );
-// view.move_to_beginning(&MoveToBeginning, cx);
+// view.move_to_next_word_end(&MoveToNextWordEnd, cx);
// assert_eq!(
// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0)]
+// &[DisplayPoint::new(2, 8)..DisplayPoint::new(2, 8)]
// );
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([DisplayPoint::new(0, 1)..DisplayPoint::new(0, 2)]);
-// });
-// view.select_to_beginning(&SelectToBeginning, cx);
+// view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
// assert_eq!(
// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(0, 1)..DisplayPoint::new(0, 0)]
+// &[DisplayPoint::new(2, 4)..DisplayPoint::new(2, 4)]
// );
-// view.select_to_end(&SelectToEnd, cx);
+// view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
// assert_eq!(
// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(0, 1)..DisplayPoint::new(5, 6)]
+// &[DisplayPoint::new(1, 14)..DisplayPoint::new(1, 14)]
// );
// });
// }
+//todo!(simulate_resize)
// #[gpui::test]
-// fn test_move_cursor_multibyte(cx: &mut TestAppContext) {
+// async fn test_move_start_of_paragraph_end_of_paragraph(cx: &mut gpui::TestAppContext) {
// init_test(cx, |_| {});
+// let mut cx = EditorTestContext::new(cx).await;
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("ⓐⓑⓒⓓⓔ\nabcde\nαβγδε", cx);
-// build_editor(buffer.clone(), cx)
-// })
-// .root(cx);
+// let line_height = cx.editor(|editor, cx| editor.style(cx).text.line_height(cx.font_cache()));
+// let window = cx.window;
+// window.simulate_resize(gpui::Point::new(100., 4. * line_height), &mut cx);
-// assert_eq!('ⓐ'.len_utf8(), 3);
-// assert_eq!('α'.len_utf8(), 2);
+// cx.set_state(
+// &r#"ˇone
+// two
-// view.update(cx, |view, cx| {
-// view.fold_ranges(
-// vec![
-// Point::new(0, 6)..Point::new(0, 12),
-// Point::new(1, 2)..Point::new(1, 4),
-// Point::new(2, 4)..Point::new(2, 8),
-// ],
-// true,
-// cx,
-// );
-// assert_eq!(view.display_text(cx), "ⓐⓑ⋯ⓔ\nab⋯e\nαβ⋯ε");
+// three
+// fourˇ
+// five
-// view.move_right(&MoveRight, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(0, "ⓐ".len())]
-// );
-// view.move_right(&MoveRight, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(0, "ⓐⓑ".len())]
-// );
-// view.move_right(&MoveRight, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(0, "ⓐⓑ⋯".len())]
-// );
+// six"#
+// .unindent(),
+// );
-// view.move_down(&MoveDown, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(1, "ab⋯e".len())]
-// );
-// view.move_left(&MoveLeft, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(1, "ab⋯".len())]
-// );
-// view.move_left(&MoveLeft, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(1, "ab".len())]
-// );
-// view.move_left(&MoveLeft, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(1, "a".len())]
-// );
+// cx.update_editor(|editor, cx| editor.move_to_end_of_paragraph(&MoveToEndOfParagraph, cx));
+// cx.assert_editor_state(
+// &r#"one
+// two
+// ˇ
+// three
+// four
+// five
+// ˇ
+// six"#
+// .unindent(),
+// );
-// view.move_down(&MoveDown, cx);
+// cx.update_editor(|editor, cx| editor.move_to_end_of_paragraph(&MoveToEndOfParagraph, cx));
+// cx.assert_editor_state(
+// &r#"one
+// two
+
+// three
+// four
+// five
+// ˇ
+// sixˇ"#
+// .unindent(),
+// );
+
+// cx.update_editor(|editor, cx| editor.move_to_end_of_paragraph(&MoveToEndOfParagraph, cx));
+// cx.assert_editor_state(
+// &r#"one
+// two
+
+// three
+// four
+// five
+
+// sixˇ"#
+// .unindent(),
+// );
+
+// cx.update_editor(|editor, cx| editor.move_to_start_of_paragraph(&MoveToStartOfParagraph, cx));
+// cx.assert_editor_state(
+// &r#"one
+// two
+
+// three
+// four
+// five
+// ˇ
+// six"#
+// .unindent(),
+// );
+
+// cx.update_editor(|editor, cx| editor.move_to_start_of_paragraph(&MoveToStartOfParagraph, cx));
+// cx.assert_editor_state(
+// &r#"one
+// two
+// ˇ
+// three
+// four
+// five
+
+// six"#
+// .unindent(),
+// );
+
+// cx.update_editor(|editor, cx| editor.move_to_start_of_paragraph(&MoveToStartOfParagraph, cx));
+// cx.assert_editor_state(
+// &r#"ˇone
+// two
+
+// three
+// four
+// five
+
+// six"#
+// .unindent(),
+// );
+// }
+
+// #[gpui::test]
+// async fn test_scroll_page_up_page_down(cx: &mut gpui::TestAppContext) {
+// init_test(cx, |_| {});
+// let mut cx = EditorTestContext::new(cx).await;
+// let line_height = cx.editor(|editor, cx| editor.style(cx).text.line_height(cx.font_cache()));
+// let window = cx.window;
+// window.simulate_resize(Point::new(1000., 4. * line_height + 0.5), &mut cx);
+
+// cx.set_state(
+// &r#"ˇone
+// two
+// three
+// four
+// five
+// six
+// seven
+// eight
+// nine
+// ten
+// "#,
+// );
+
+// cx.update_editor(|editor, cx| {
// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(2, "α".len())]
+// editor.snapshot(cx).scroll_position(),
+// gpui::Point::new(0., 0.)
// );
-// view.move_right(&MoveRight, cx);
+// editor.scroll_screen(&ScrollAmount::Page(1.), cx);
// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(2, "αβ".len())]
+// editor.snapshot(cx).scroll_position(),
+// gpui::Point::new(0., 3.)
// );
-// view.move_right(&MoveRight, cx);
+// editor.scroll_screen(&ScrollAmount::Page(1.), cx);
// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(2, "αβ⋯".len())]
+// editor.snapshot(cx).scroll_position(),
+// gpui::Point::new(0., 6.)
// );
-// view.move_right(&MoveRight, cx);
+// editor.scroll_screen(&ScrollAmount::Page(-1.), cx);
// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(2, "αβ⋯ε".len())]
+// editor.snapshot(cx).scroll_position(),
+// gpui::Point::new(0., 3.)
// );
-// view.move_up(&MoveUp, cx);
+// editor.scroll_screen(&ScrollAmount::Page(-0.5), cx);
// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(1, "ab⋯e".len())]
+// editor.snapshot(cx).scroll_position(),
+// gpui::Point::new(0., 1.)
// );
-// view.move_down(&MoveDown, cx);
+// editor.scroll_screen(&ScrollAmount::Page(0.5), cx);
// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(2, "αβ⋯ε".len())]
-// );
-// view.move_up(&MoveUp, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(1, "ab⋯e".len())]
-// );
-
-// view.move_up(&MoveUp, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(0, "ⓐⓑ".len())]
-// );
-// view.move_left(&MoveLeft, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(0, "ⓐ".len())]
-// );
-// view.move_left(&MoveLeft, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(0, "".len())]
-// );
-// });
-// }
-
-// #[gpui::test]
-// fn test_move_cursor_different_line_lengths(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("ⓐⓑⓒⓓⓔ\nabcd\nαβγ\nabcd\nⓐⓑⓒⓓⓔ\n", cx);
-// build_editor(buffer.clone(), cx)
-// })
-// .root(cx);
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([empty_range(0, "ⓐⓑⓒⓓⓔ".len())]);
-// });
-// view.move_down(&MoveDown, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(1, "abcd".len())]
-// );
-
-// view.move_down(&MoveDown, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(2, "αβγ".len())]
-// );
-
-// view.move_down(&MoveDown, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(3, "abcd".len())]
-// );
-
-// view.move_down(&MoveDown, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(4, "ⓐⓑⓒⓓⓔ".len())]
-// );
-
-// view.move_up(&MoveUp, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(3, "abcd".len())]
-// );
-
-// view.move_up(&MoveUp, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[empty_range(2, "αβγ".len())]
+// editor.snapshot(cx).scroll_position(),
+// gpui::Point::new(0., 3.)
// );
// });
// }
// #[gpui::test]
-// fn test_beginning_end_of_line(cx: &mut TestAppContext) {
+// async fn test_autoscroll(cx: &mut gpui::TestAppContext) {
// init_test(cx, |_| {});
+// let mut cx = EditorTestContext::new(cx).await;
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("abc\n def", cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(1, 4)..DisplayPoint::new(1, 4),
-// ]);
-// });
-// });
-
-// view.update(cx, |view, cx| {
-// view.move_to_beginning_of_line(&MoveToBeginningOfLine, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[
-// DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0),
-// DisplayPoint::new(1, 2)..DisplayPoint::new(1, 2),
-// ]
-// );
-// });
-
-// view.update(cx, |view, cx| {
-// view.move_to_beginning_of_line(&MoveToBeginningOfLine, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[
-// DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0),
-// DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0),
-// ]
-// );
-// });
-
-// view.update(cx, |view, cx| {
-// view.move_to_beginning_of_line(&MoveToBeginningOfLine, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[
-// DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0),
-// DisplayPoint::new(1, 2)..DisplayPoint::new(1, 2),
-// ]
-// );
+// let line_height = cx.update_editor(|editor, cx| {
+// editor.set_vertical_scroll_margin(2, cx);
+// editor.style(cx).text.line_height(cx.font_cache())
// });
-// view.update(cx, |view, cx| {
-// view.move_to_end_of_line(&MoveToEndOfLine, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[
-// DisplayPoint::new(0, 3)..DisplayPoint::new(0, 3),
-// DisplayPoint::new(1, 5)..DisplayPoint::new(1, 5),
-// ]
-// );
-// });
+// let window = cx.window;
+// window.simulate_resize(gpui::Point::new(1000., 6.0 * line_height), &mut cx);
-// // Moving to the end of line again is a no-op.
-// view.update(cx, |view, cx| {
-// view.move_to_end_of_line(&MoveToEndOfLine, cx);
+// cx.set_state(
+// &r#"ˇone
+// two
+// three
+// four
+// five
+// six
+// seven
+// eight
+// nine
+// ten
+// "#,
+// );
+// cx.update_editor(|editor, cx| {
// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[
-// DisplayPoint::new(0, 3)..DisplayPoint::new(0, 3),
-// DisplayPoint::new(1, 5)..DisplayPoint::new(1, 5),
-// ]
+// editor.snapshot(cx).scroll_position(),
+// gpui::Point::new(0., 0.0)
// );
// });
-// view.update(cx, |view, cx| {
-// view.move_left(&MoveLeft, cx);
-// view.select_to_beginning_of_line(
-// &SelectToBeginningOfLine {
-// stop_at_soft_wraps: true,
-// },
-// cx,
-// );
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[
-// DisplayPoint::new(0, 2)..DisplayPoint::new(0, 0),
-// DisplayPoint::new(1, 4)..DisplayPoint::new(1, 2),
-// ]
-// );
+// // Add a cursor below the visible area. Since both cursors cannot fit
+// // on screen, the editor autoscrolls to reveal the newest cursor, and
+// // allows the vertical scroll margin below that cursor.
+// cx.update_editor(|editor, cx| {
+// editor.change_selections(Some(Autoscroll::fit()), cx, |selections| {
+// selections.select_ranges([
+// Point::new(0, 0)..Point::new(0, 0),
+// Point::new(6, 0)..Point::new(6, 0),
+// ]);
+// })
// });
-
-// view.update(cx, |view, cx| {
-// view.select_to_beginning_of_line(
-// &SelectToBeginningOfLine {
-// stop_at_soft_wraps: true,
-// },
-// cx,
-// );
+// cx.update_editor(|editor, cx| {
// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[
-// DisplayPoint::new(0, 2)..DisplayPoint::new(0, 0),
-// DisplayPoint::new(1, 4)..DisplayPoint::new(1, 0),
-// ]
+// editor.snapshot(cx).scroll_position(),
+// gpui::Point::new(0., 3.0)
// );
// });
-// view.update(cx, |view, cx| {
-// view.select_to_beginning_of_line(
-// &SelectToBeginningOfLine {
-// stop_at_soft_wraps: true,
-// },
-// cx,
-// );
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[
-// DisplayPoint::new(0, 2)..DisplayPoint::new(0, 0),
-// DisplayPoint::new(1, 4)..DisplayPoint::new(1, 2),
-// ]
-// );
+// // Move down. The editor cursor scrolls down to track the newest cursor.
+// cx.update_editor(|editor, cx| {
+// editor.move_down(&Default::default(), cx);
// });
-
-// view.update(cx, |view, cx| {
-// view.select_to_end_of_line(
-// &SelectToEndOfLine {
-// stop_at_soft_wraps: true,
-// },
-// cx,
-// );
+// cx.update_editor(|editor, cx| {
// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[
-// DisplayPoint::new(0, 2)..DisplayPoint::new(0, 3),
-// DisplayPoint::new(1, 4)..DisplayPoint::new(1, 5),
-// ]
+// editor.snapshot(cx).scroll_position(),
+// gpui::Point::new(0., 4.0)
// );
// });
-// view.update(cx, |view, cx| {
-// view.delete_to_end_of_line(&DeleteToEndOfLine, cx);
-// assert_eq!(view.display_text(cx), "ab\n de");
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[
-// DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
-// DisplayPoint::new(1, 4)..DisplayPoint::new(1, 4),
-// ]
-// );
+// // Add a cursor above the visible area. Since both cursors fit on screen,
+// // the editor scrolls to show both.
+// cx.update_editor(|editor, cx| {
+// editor.change_selections(Some(Autoscroll::fit()), cx, |selections| {
+// selections.select_ranges([
+// Point::new(1, 0)..Point::new(1, 0),
+// Point::new(6, 0)..Point::new(6, 0),
+// ]);
+// })
// });
-
-// view.update(cx, |view, cx| {
-// view.delete_to_beginning_of_line(&DeleteToBeginningOfLine, cx);
-// assert_eq!(view.display_text(cx), "\n");
+// cx.update_editor(|editor, cx| {
// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[
-// DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0),
-// DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0),
-// ]
+// editor.snapshot(cx).scroll_position(),
+// gpui::Point::new(0., 1.0)
// );
// });
// }
// #[gpui::test]
-// fn test_prev_next_word_boundary(cx: &mut TestAppContext) {
+// async fn test_move_page_up_page_down(cx: &mut gpui::TestAppContext) {
// init_test(cx, |_| {});
+// let mut cx = EditorTestContext::new(cx).await;
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("use std::str::{foo, bar}\n\n {baz.qux()}", cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// DisplayPoint::new(0, 11)..DisplayPoint::new(0, 11),
-// DisplayPoint::new(2, 4)..DisplayPoint::new(2, 4),
-// ])
-// });
-
-// view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
-// assert_selection_ranges("use std::ˇstr::{foo, bar}\n\n {ˇbaz.qux()}", view, cx);
-
-// view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
-// assert_selection_ranges("use stdˇ::str::{foo, bar}\n\n ˇ{baz.qux()}", view, cx);
-
-// view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
-// assert_selection_ranges("use ˇstd::str::{foo, bar}\n\nˇ {baz.qux()}", view, cx);
+// let line_height = cx.editor(|editor, cx| editor.style(cx).text.line_height(cx.font_cache()));
+// let window = cx.window;
+// window.simulate_resize(gpui::Point::new(100., 4. * line_height), &mut cx);
-// view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
-// assert_selection_ranges("ˇuse std::str::{foo, bar}\nˇ\n {baz.qux()}", view, cx);
+// cx.set_state(
+// &r#"
+// ˇone
+// two
+// threeˇ
+// four
+// five
+// six
+// seven
+// eight
+// nine
+// ten
+// "#
+// .unindent(),
+// );
-// view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
-// assert_selection_ranges("ˇuse std::str::{foo, barˇ}\n\n {baz.qux()}", view, cx);
+// cx.update_editor(|editor, cx| editor.move_page_down(&MovePageDown::default(), cx));
+// cx.assert_editor_state(
+// &r#"
+// one
+// two
+// three
+// ˇfour
+// five
+// sixˇ
+// seven
+// eight
+// nine
+// ten
+// "#
+// .unindent(),
+// );
-// view.move_to_next_word_end(&MoveToNextWordEnd, cx);
-// assert_selection_ranges("useˇ std::str::{foo, bar}ˇ\n\n {baz.qux()}", view, cx);
+// cx.update_editor(|editor, cx| editor.move_page_down(&MovePageDown::default(), cx));
+// cx.assert_editor_state(
+// &r#"
+// one
+// two
+// three
+// four
+// five
+// six
+// ˇseven
+// eight
+// nineˇ
+// ten
+// "#
+// .unindent(),
+// );
-// view.move_to_next_word_end(&MoveToNextWordEnd, cx);
-// assert_selection_ranges("use stdˇ::str::{foo, bar}\nˇ\n {baz.qux()}", view, cx);
-
-// view.move_to_next_word_end(&MoveToNextWordEnd, cx);
-// assert_selection_ranges("use std::ˇstr::{foo, bar}\n\n {ˇbaz.qux()}", view, cx);
-
-// view.move_right(&MoveRight, cx);
-// view.select_to_previous_word_start(&SelectToPreviousWordStart, cx);
-// assert_selection_ranges("use std::«ˇs»tr::{foo, bar}\n\n {«ˇb»az.qux()}", view, cx);
+// cx.update_editor(|editor, cx| editor.move_page_up(&MovePageUp::default(), cx));
+// cx.assert_editor_state(
+// &r#"
+// one
+// two
+// three
+// ˇfour
+// five
+// sixˇ
+// seven
+// eight
+// nine
+// ten
+// "#
+// .unindent(),
+// );
-// view.select_to_previous_word_start(&SelectToPreviousWordStart, cx);
-// assert_selection_ranges("use std«ˇ::s»tr::{foo, bar}\n\n «ˇ{b»az.qux()}", view, cx);
+// cx.update_editor(|editor, cx| editor.move_page_up(&MovePageUp::default(), cx));
+// cx.assert_editor_state(
+// &r#"
+// ˇone
+// two
+// threeˇ
+// four
+// five
+// six
+// seven
+// eight
+// nine
+// ten
+// "#
+// .unindent(),
+// );
-// view.select_to_next_word_end(&SelectToNextWordEnd, cx);
-// assert_selection_ranges("use std::«ˇs»tr::{foo, bar}\n\n {«ˇb»az.qux()}", view, cx);
+// // Test select collapsing
+// cx.update_editor(|editor, cx| {
+// editor.move_page_down(&MovePageDown::default(), cx);
+// editor.move_page_down(&MovePageDown::default(), cx);
+// editor.move_page_down(&MovePageDown::default(), cx);
// });
+// cx.assert_editor_state(
+// &r#"
+// one
+// two
+// three
+// four
+// five
+// six
+// seven
+// eight
+// nine
+// ˇten
+// ˇ"#
+// .unindent(),
+// );
// }
-// #[gpui::test]
-// fn test_prev_next_word_bounds_with_soft_wrap(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
+#[gpui::test]
+async fn test_delete_to_beginning_of_line(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+ let mut cx = EditorTestContext::new(cx).await;
+ cx.set_state("one «two threeˇ» four");
+ cx.update_editor(|editor, cx| {
+ editor.delete_to_beginning_of_line(&DeleteToBeginningOfLine, cx);
+ assert_eq!(editor.text(cx), " four");
+ });
+}
-// let view = cx
-// .add_window(|cx| {
-// let buffer =
-// MultiBuffer::build_simple("use one::{\n two::three::four::five\n};", cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
+#[gpui::test]
+fn test_delete_to_word_boundary(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// view.update(cx, |view, cx| {
-// view.set_wrap_width(Some(140.), cx);
-// assert_eq!(
-// view.display_text(cx),
-// "use one::{\n two::three::\n four::five\n};"
-// );
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("one two three four", cx);
+ build_editor(buffer.clone(), cx)
+ });
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([DisplayPoint::new(1, 7)..DisplayPoint::new(1, 7)]);
-// });
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ // an empty selection - the preceding word fragment is deleted
+ DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
+ // characters selected - they are deleted
+ DisplayPoint::new(0, 9)..DisplayPoint::new(0, 12),
+ ])
+ });
+ view.delete_to_previous_word_start(&DeleteToPreviousWordStart, cx);
+ assert_eq!(view.buffer.read(cx).read(cx).text(), "e two te four");
+ });
-// view.move_to_next_word_end(&MoveToNextWordEnd, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(1, 9)..DisplayPoint::new(1, 9)]
-// );
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ // an empty selection - the following word fragment is deleted
+ DisplayPoint::new(0, 3)..DisplayPoint::new(0, 3),
+ // characters selected - they are deleted
+ DisplayPoint::new(0, 9)..DisplayPoint::new(0, 10),
+ ])
+ });
+ view.delete_to_next_word_end(&DeleteToNextWordEnd, cx);
+ assert_eq!(view.buffer.read(cx).read(cx).text(), "e t te our");
+ });
+}
-// view.move_to_next_word_end(&MoveToNextWordEnd, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(1, 14)..DisplayPoint::new(1, 14)]
-// );
+#[gpui::test]
+fn test_newline(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// view.move_to_next_word_end(&MoveToNextWordEnd, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(2, 4)..DisplayPoint::new(2, 4)]
-// );
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("aaaa\n bbbb\n", cx);
+ build_editor(buffer.clone(), cx)
+ });
-// view.move_to_next_word_end(&MoveToNextWordEnd, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(2, 8)..DisplayPoint::new(2, 8)]
-// );
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
+ DisplayPoint::new(1, 2)..DisplayPoint::new(1, 2),
+ DisplayPoint::new(1, 6)..DisplayPoint::new(1, 6),
+ ])
+ });
-// view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(2, 4)..DisplayPoint::new(2, 4)]
-// );
+ view.newline(&Newline, cx);
+ assert_eq!(view.text(cx), "aa\naa\n \n bb\n bb\n");
+ });
+}
-// view.move_to_previous_word_start(&MoveToPreviousWordStart, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(1, 14)..DisplayPoint::new(1, 14)]
-// );
-// });
-// }
+#[gpui::test]
+fn test_newline_with_old_selections(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let editor = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple(
+ "
+ a
+ b(
+ X
+ )
+ c(
+ X
+ )
+ "
+ .unindent()
+ .as_str(),
+ cx,
+ );
+ let mut editor = build_editor(buffer.clone(), cx);
+ editor.change_selections(None, cx, |s| {
+ s.select_ranges([
+ Point::new(2, 4)..Point::new(2, 5),
+ Point::new(5, 4)..Point::new(5, 5),
+ ])
+ });
+ editor
+ });
-// #[gpui::test]
-// async fn test_move_start_of_paragraph_end_of_paragraph(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-// let mut cx = EditorTestContext::new(cx).await;
+ editor.update(cx, |editor, cx| {
+ // Edit the buffer directly, deleting ranges surrounding the editor's selections
+ editor.buffer.update(cx, |buffer, cx| {
+ buffer.edit(
+ [
+ (Point::new(1, 2)..Point::new(3, 0), ""),
+ (Point::new(4, 2)..Point::new(6, 0), ""),
+ ],
+ None,
+ cx,
+ );
+ assert_eq!(
+ buffer.read(cx).text(),
+ "
+ a
+ b()
+ c()
+ "
+ .unindent()
+ );
+ });
+ assert_eq!(
+ editor.selections.ranges(cx),
+ &[
+ Point::new(1, 2)..Point::new(1, 2),
+ Point::new(2, 2)..Point::new(2, 2),
+ ],
+ );
+
+ editor.newline(&Newline, cx);
+ assert_eq!(
+ editor.text(cx),
+ "
+ a
+ b(
+ )
+ c(
+ )
+ "
+ .unindent()
+ );
+
+ // The selections are moved after the inserted newlines
+ assert_eq!(
+ editor.selections.ranges(cx),
+ &[
+ Point::new(2, 0)..Point::new(2, 0),
+ Point::new(4, 0)..Point::new(4, 0),
+ ],
+ );
+ });
+}
-// let line_height = cx.editor(|editor, cx| editor.style(cx).text.line_height(cx.font_cache()));
-// let window = cx.window;
-// window.simulate_resize(vec2f(100., 4. * line_height), &mut cx);
+#[gpui::test]
+async fn test_newline_above(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |settings| {
+ settings.defaults.tab_size = NonZeroU32::new(4)
+ });
-// cx.set_state(
-// &r#"ˇone
-// two
+ let language = Arc::new(
+ Language::new(
+ LanguageConfig::default(),
+ Some(tree_sitter_rust::language()),
+ )
+ .with_indents_query(r#"(_ "(" ")" @end) @indent"#)
+ .unwrap(),
+ );
+
+ let mut cx = EditorTestContext::new(cx).await;
+ cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
+ cx.set_state(indoc! {"
+ const a: ˇA = (
+ (ˇ
+ «const_functionˇ»(ˇ),
+ so«mˇ»et«hˇ»ing_ˇelse,ˇ
+ )ˇ
+ ˇ);ˇ
+ "});
+
+ cx.update_editor(|e, cx| e.newline_above(&NewlineAbove, cx));
+ cx.assert_editor_state(indoc! {"
+ ˇ
+ const a: A = (
+ ˇ
+ (
+ ˇ
+ ˇ
+ const_function(),
+ ˇ
+ ˇ
+ ˇ
+ ˇ
+ something_else,
+ ˇ
+ )
+ ˇ
+ ˇ
+ );
+ "});
+}
-// three
-// fourˇ
-// five
+#[gpui::test]
+async fn test_newline_below(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |settings| {
+ settings.defaults.tab_size = NonZeroU32::new(4)
+ });
-// six"#
-// .unindent(),
-// );
+ let language = Arc::new(
+ Language::new(
+ LanguageConfig::default(),
+ Some(tree_sitter_rust::language()),
+ )
+ .with_indents_query(r#"(_ "(" ")" @end) @indent"#)
+ .unwrap(),
+ );
+
+ let mut cx = EditorTestContext::new(cx).await;
+ cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
+ cx.set_state(indoc! {"
+ const a: ˇA = (
+ (ˇ
+ «const_functionˇ»(ˇ),
+ so«mˇ»et«hˇ»ing_ˇelse,ˇ
+ )ˇ
+ ˇ);ˇ
+ "});
+
+ cx.update_editor(|e, cx| e.newline_below(&NewlineBelow, cx));
+ cx.assert_editor_state(indoc! {"
+ const a: A = (
+ ˇ
+ (
+ ˇ
+ const_function(),
+ ˇ
+ ˇ
+ something_else,
+ ˇ
+ ˇ
+ ˇ
+ ˇ
+ )
+ ˇ
+ );
+ ˇ
+ ˇ
+ "});
+}
-// cx.update_editor(|editor, cx| editor.move_to_end_of_paragraph(&MoveToEndOfParagraph, cx));
-// cx.assert_editor_state(
-// &r#"one
-// two
-// ˇ
-// three
-// four
-// five
-// ˇ
-// six"#
-// .unindent(),
-// );
+#[gpui::test]
+async fn test_newline_comments(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |settings| {
+ settings.defaults.tab_size = NonZeroU32::new(4)
+ });
-// cx.update_editor(|editor, cx| editor.move_to_end_of_paragraph(&MoveToEndOfParagraph, cx));
-// cx.assert_editor_state(
-// &r#"one
-// two
+ let language = Arc::new(Language::new(
+ LanguageConfig {
+ line_comment: Some("//".into()),
+ ..LanguageConfig::default()
+ },
+ None,
+ ));
+ {
+ let mut cx = EditorTestContext::new(cx).await;
+ cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
+ cx.set_state(indoc! {"
+ // Fooˇ
+ "});
+
+ cx.update_editor(|e, cx| e.newline(&Newline, cx));
+ cx.assert_editor_state(indoc! {"
+ // Foo
+ //ˇ
+ "});
+ // Ensure that if cursor is before the comment start, we do not actually insert a comment prefix.
+ cx.set_state(indoc! {"
+ ˇ// Foo
+ "});
+ cx.update_editor(|e, cx| e.newline(&Newline, cx));
+ cx.assert_editor_state(indoc! {"
+
+ ˇ// Foo
+ "});
+ }
+ // Ensure that comment continuations can be disabled.
+ update_test_language_settings(cx, |settings| {
+ settings.defaults.extend_comment_on_newline = Some(false);
+ });
+ let mut cx = EditorTestContext::new(cx).await;
+ cx.set_state(indoc! {"
+ // Fooˇ
+ "});
+ cx.update_editor(|e, cx| e.newline(&Newline, cx));
+ cx.assert_editor_state(indoc! {"
+ // Foo
+ ˇ
+ "});
+}
-// three
-// four
-// five
-// ˇ
-// sixˇ"#
-// .unindent(),
-// );
+#[gpui::test]
+fn test_insert_with_old_selections(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// cx.update_editor(|editor, cx| editor.move_to_end_of_paragraph(&MoveToEndOfParagraph, cx));
-// cx.assert_editor_state(
-// &r#"one
-// two
+ let editor = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("a( X ), b( Y ), c( Z )", cx);
+ let mut editor = build_editor(buffer.clone(), cx);
+ editor.change_selections(None, cx, |s| s.select_ranges([3..4, 11..12, 19..20]));
+ editor
+ });
-// three
-// four
-// five
+ editor.update(cx, |editor, cx| {
+ // Edit the buffer directly, deleting ranges surrounding the editor's selections
+ editor.buffer.update(cx, |buffer, cx| {
+ buffer.edit([(2..5, ""), (10..13, ""), (18..21, "")], None, cx);
+ assert_eq!(buffer.read(cx).text(), "a(), b(), c()".unindent());
+ });
+ assert_eq!(editor.selections.ranges(cx), &[2..2, 7..7, 12..12],);
-// sixˇ"#
-// .unindent(),
-// );
+ editor.insert("Z", cx);
+ assert_eq!(editor.text(cx), "a(Z), b(Z), c(Z)");
-// cx.update_editor(|editor, cx| editor.move_to_start_of_paragraph(&MoveToStartOfParagraph, cx));
-// cx.assert_editor_state(
-// &r#"one
-// two
+ // The selections are moved after the inserted characters
+ assert_eq!(editor.selections.ranges(cx), &[3..3, 9..9, 15..15],);
+ });
+}
-// three
-// four
-// five
-// ˇ
-// six"#
-// .unindent(),
-// );
+#[gpui::test]
+async fn test_tab(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |settings| {
+ settings.defaults.tab_size = NonZeroU32::new(3)
+ });
-// cx.update_editor(|editor, cx| editor.move_to_start_of_paragraph(&MoveToStartOfParagraph, cx));
-// cx.assert_editor_state(
-// &r#"one
-// two
-// ˇ
-// three
-// four
-// five
+ let mut cx = EditorTestContext::new(cx).await;
+ cx.set_state(indoc! {"
+ ˇabˇc
+ ˇ🏀ˇ🏀ˇefg
+ dˇ
+ "});
+ cx.update_editor(|e, cx| e.tab(&Tab, cx));
+ cx.assert_editor_state(indoc! {"
+ ˇab ˇc
+ ˇ🏀 ˇ🏀 ˇefg
+ d ˇ
+ "});
+
+ cx.set_state(indoc! {"
+ a
+ «🏀ˇ»🏀«🏀ˇ»🏀«🏀ˇ»
+ "});
+ cx.update_editor(|e, cx| e.tab(&Tab, cx));
+ cx.assert_editor_state(indoc! {"
+ a
+ «🏀ˇ»🏀«🏀ˇ»🏀«🏀ˇ»
+ "});
+}
-// six"#
-// .unindent(),
-// );
+#[gpui::test]
+async fn test_tab_in_leading_whitespace_auto_indents_lines(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut cx = EditorTestContext::new(cx).await;
+ let language = Arc::new(
+ Language::new(
+ LanguageConfig::default(),
+ Some(tree_sitter_rust::language()),
+ )
+ .with_indents_query(r#"(_ "(" ")" @end) @indent"#)
+ .unwrap(),
+ );
+ cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
+
+ // cursors that are already at the suggested indent level insert
+ // a soft tab. cursors that are to the left of the suggested indent
+ // auto-indent their line.
+ cx.set_state(indoc! {"
+ ˇ
+ const a: B = (
+ c(
+ d(
+ ˇ
+ )
+ ˇ
+ ˇ )
+ );
+ "});
+ cx.update_editor(|e, cx| e.tab(&Tab, cx));
+ cx.assert_editor_state(indoc! {"
+ ˇ
+ const a: B = (
+ c(
+ d(
+ ˇ
+ )
+ ˇ
+ ˇ)
+ );
+ "});
+
+ // handle auto-indent when there are multiple cursors on the same line
+ cx.set_state(indoc! {"
+ const a: B = (
+ c(
+ ˇ ˇ
+ ˇ )
+ );
+ "});
+ cx.update_editor(|e, cx| e.tab(&Tab, cx));
+ cx.assert_editor_state(indoc! {"
+ const a: B = (
+ c(
+ ˇ
+ ˇ)
+ );
+ "});
+}
-// cx.update_editor(|editor, cx| editor.move_to_start_of_paragraph(&MoveToStartOfParagraph, cx));
-// cx.assert_editor_state(
-// &r#"ˇone
-// two
+#[gpui::test]
+async fn test_tab_with_mixed_whitespace(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |settings| {
+ settings.defaults.tab_size = NonZeroU32::new(4)
+ });
-// three
-// four
-// five
+ let language = Arc::new(
+ Language::new(
+ LanguageConfig::default(),
+ Some(tree_sitter_rust::language()),
+ )
+ .with_indents_query(r#"(_ "{" "}" @end) @indent"#)
+ .unwrap(),
+ );
+
+ let mut cx = EditorTestContext::new(cx).await;
+ cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
+ cx.set_state(indoc! {"
+ fn a() {
+ if b {
+ \t ˇc
+ }
+ }
+ "});
+
+ cx.update_editor(|e, cx| e.tab(&Tab, cx));
+ cx.assert_editor_state(indoc! {"
+ fn a() {
+ if b {
+ ˇc
+ }
+ }
+ "});
+}
-// six"#
-// .unindent(),
-// );
-// }
+#[gpui::test]
+async fn test_indent_outdent(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |settings| {
+ settings.defaults.tab_size = NonZeroU32::new(4);
+ });
-// #[gpui::test]
-// async fn test_scroll_page_up_page_down(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-// let mut cx = EditorTestContext::new(cx).await;
-// let line_height = cx.editor(|editor, cx| editor.style(cx).text.line_height(cx.font_cache()));
-// let window = cx.window;
-// window.simulate_resize(vec2f(1000., 4. * line_height + 0.5), &mut cx);
+ let mut cx = EditorTestContext::new(cx).await;
+
+ cx.set_state(indoc! {"
+ «oneˇ» «twoˇ»
+ three
+ four
+ "});
+ cx.update_editor(|e, cx| e.tab(&Tab, cx));
+ cx.assert_editor_state(indoc! {"
+ «oneˇ» «twoˇ»
+ three
+ four
+ "});
+
+ cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
+ cx.assert_editor_state(indoc! {"
+ «oneˇ» «twoˇ»
+ three
+ four
+ "});
+
+ // select across line ending
+ cx.set_state(indoc! {"
+ one two
+ t«hree
+ ˇ» four
+ "});
+ cx.update_editor(|e, cx| e.tab(&Tab, cx));
+ cx.assert_editor_state(indoc! {"
+ one two
+ t«hree
+ ˇ» four
+ "});
+
+ cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
+ cx.assert_editor_state(indoc! {"
+ one two
+ t«hree
+ ˇ» four
+ "});
+
+ // Ensure that indenting/outdenting works when the cursor is at column 0.
+ cx.set_state(indoc! {"
+ one two
+ ˇthree
+ four
+ "});
+ cx.update_editor(|e, cx| e.tab(&Tab, cx));
+ cx.assert_editor_state(indoc! {"
+ one two
+ ˇthree
+ four
+ "});
+
+ cx.set_state(indoc! {"
+ one two
+ ˇ three
+ four
+ "});
+ cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
+ cx.assert_editor_state(indoc! {"
+ one two
+ ˇthree
+ four
+ "});
+}
-// cx.set_state(
-// &r#"ˇone
-// two
-// three
-// four
-// five
-// six
-// seven
-// eight
-// nine
-// ten
-// "#,
-// );
+#[gpui::test]
+async fn test_indent_outdent_with_hard_tabs(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |settings| {
+ settings.defaults.hard_tabs = Some(true);
+ });
-// cx.update_editor(|editor, cx| {
-// assert_eq!(editor.snapshot(cx).scroll_position(), vec2f(0., 0.));
-// editor.scroll_screen(&ScrollAmount::Page(1.), cx);
-// assert_eq!(editor.snapshot(cx).scroll_position(), vec2f(0., 3.));
-// editor.scroll_screen(&ScrollAmount::Page(1.), cx);
-// assert_eq!(editor.snapshot(cx).scroll_position(), vec2f(0., 6.));
-// editor.scroll_screen(&ScrollAmount::Page(-1.), cx);
-// assert_eq!(editor.snapshot(cx).scroll_position(), vec2f(0., 3.));
+ let mut cx = EditorTestContext::new(cx).await;
+
+ // select two ranges on one line
+ cx.set_state(indoc! {"
+ «oneˇ» «twoˇ»
+ three
+ four
+ "});
+ cx.update_editor(|e, cx| e.tab(&Tab, cx));
+ cx.assert_editor_state(indoc! {"
+ \t«oneˇ» «twoˇ»
+ three
+ four
+ "});
+ cx.update_editor(|e, cx| e.tab(&Tab, cx));
+ cx.assert_editor_state(indoc! {"
+ \t\t«oneˇ» «twoˇ»
+ three
+ four
+ "});
+ cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
+ cx.assert_editor_state(indoc! {"
+ \t«oneˇ» «twoˇ»
+ three
+ four
+ "});
+ cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
+ cx.assert_editor_state(indoc! {"
+ «oneˇ» «twoˇ»
+ three
+ four
+ "});
+
+ // select across a line ending
+ cx.set_state(indoc! {"
+ one two
+ t«hree
+ ˇ»four
+ "});
+ cx.update_editor(|e, cx| e.tab(&Tab, cx));
+ cx.assert_editor_state(indoc! {"
+ one two
+ \tt«hree
+ ˇ»four
+ "});
+ cx.update_editor(|e, cx| e.tab(&Tab, cx));
+ cx.assert_editor_state(indoc! {"
+ one two
+ \t\tt«hree
+ ˇ»four
+ "});
+ cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
+ cx.assert_editor_state(indoc! {"
+ one two
+ \tt«hree
+ ˇ»four
+ "});
+ cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
+ cx.assert_editor_state(indoc! {"
+ one two
+ t«hree
+ ˇ»four
+ "});
+
+ // Ensure that indenting/outdenting works when the cursor is at column 0.
+ cx.set_state(indoc! {"
+ one two
+ ˇthree
+ four
+ "});
+ cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
+ cx.assert_editor_state(indoc! {"
+ one two
+ ˇthree
+ four
+ "});
+ cx.update_editor(|e, cx| e.tab(&Tab, cx));
+ cx.assert_editor_state(indoc! {"
+ one two
+ \tˇthree
+ four
+ "});
+ cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
+ cx.assert_editor_state(indoc! {"
+ one two
+ ˇthree
+ four
+ "});
+}
-// editor.scroll_screen(&ScrollAmount::Page(-0.5), cx);
-// assert_eq!(editor.snapshot(cx).scroll_position(), vec2f(0., 1.));
-// editor.scroll_screen(&ScrollAmount::Page(0.5), cx);
-// assert_eq!(editor.snapshot(cx).scroll_position(), vec2f(0., 3.));
-// });
-// }
+#[gpui::test]
+fn test_indent_outdent_with_excerpts(cx: &mut TestAppContext) {
+ init_test(cx, |settings| {
+ settings.languages.extend([
+ (
+ "TOML".into(),
+ LanguageSettingsContent {
+ tab_size: NonZeroU32::new(2),
+ ..Default::default()
+ },
+ ),
+ (
+ "Rust".into(),
+ LanguageSettingsContent {
+ tab_size: NonZeroU32::new(4),
+ ..Default::default()
+ },
+ ),
+ ]);
+ });
-// #[gpui::test]
-// async fn test_autoscroll(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-// let mut cx = EditorTestContext::new(cx).await;
+ let toml_language = Arc::new(Language::new(
+ LanguageConfig {
+ name: "TOML".into(),
+ ..Default::default()
+ },
+ None,
+ ));
+ let rust_language = Arc::new(Language::new(
+ LanguageConfig {
+ name: "Rust".into(),
+ ..Default::default()
+ },
+ None,
+ ));
+
+ let toml_buffer = cx.build_model(|cx| {
+ Buffer::new(0, cx.entity_id().as_u64(), "a = 1\nb = 2\n").with_language(toml_language, cx)
+ });
+ let rust_buffer = cx.build_model(|cx| {
+ Buffer::new(0, cx.entity_id().as_u64(), "const c: usize = 3;\n")
+ .with_language(rust_language, cx)
+ });
+ let multibuffer = cx.build_model(|cx| {
+ let mut multibuffer = MultiBuffer::new(0);
+ multibuffer.push_excerpts(
+ toml_buffer.clone(),
+ [ExcerptRange {
+ context: Point::new(0, 0)..Point::new(2, 0),
+ primary: None,
+ }],
+ cx,
+ );
+ multibuffer.push_excerpts(
+ rust_buffer.clone(),
+ [ExcerptRange {
+ context: Point::new(0, 0)..Point::new(1, 0),
+ primary: None,
+ }],
+ cx,
+ );
+ multibuffer
+ });
-// let line_height = cx.update_editor(|editor, cx| {
-// editor.set_vertical_scroll_margin(2, cx);
-// editor.style(cx).text.line_height(cx.font_cache())
-// });
-
-// let window = cx.window;
-// window.simulate_resize(vec2f(1000., 6.0 * line_height), &mut cx);
-
-// cx.set_state(
-// &r#"ˇone
-// two
-// three
-// four
-// five
-// six
-// seven
-// eight
-// nine
-// ten
-// "#,
-// );
-// cx.update_editor(|editor, cx| {
-// assert_eq!(editor.snapshot(cx).scroll_position(), vec2f(0., 0.0));
-// });
-
-// // Add a cursor below the visible area. Since both cursors cannot fit
-// // on screen, the editor autoscrolls to reveal the newest cursor, and
-// // allows the vertical scroll margin below that cursor.
-// cx.update_editor(|editor, cx| {
-// editor.change_selections(Some(Autoscroll::fit()), cx, |selections| {
-// selections.select_ranges([
-// Point::new(0, 0)..Point::new(0, 0),
-// Point::new(6, 0)..Point::new(6, 0),
-// ]);
-// })
-// });
-// cx.update_editor(|editor, cx| {
-// assert_eq!(editor.snapshot(cx).scroll_position(), vec2f(0., 3.0));
-// });
-
-// // Move down. The editor cursor scrolls down to track the newest cursor.
-// cx.update_editor(|editor, cx| {
-// editor.move_down(&Default::default(), cx);
-// });
-// cx.update_editor(|editor, cx| {
-// assert_eq!(editor.snapshot(cx).scroll_position(), vec2f(0., 4.0));
-// });
-
-// // Add a cursor above the visible area. Since both cursors fit on screen,
-// // the editor scrolls to show both.
-// cx.update_editor(|editor, cx| {
-// editor.change_selections(Some(Autoscroll::fit()), cx, |selections| {
-// selections.select_ranges([
-// Point::new(1, 0)..Point::new(1, 0),
-// Point::new(6, 0)..Point::new(6, 0),
-// ]);
-// })
-// });
-// cx.update_editor(|editor, cx| {
-// assert_eq!(editor.snapshot(cx).scroll_position(), vec2f(0., 1.0));
-// });
-// }
-
-// #[gpui::test]
-// async fn test_move_page_up_page_down(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-// let mut cx = EditorTestContext::new(cx).await;
-
-// let line_height = cx.editor(|editor, cx| editor.style(cx).text.line_height(cx.font_cache()));
-// let window = cx.window;
-// window.simulate_resize(vec2f(100., 4. * line_height), &mut cx);
-
-// cx.set_state(
-// &r#"
-// ˇone
-// two
-// threeˇ
-// four
-// five
-// six
-// seven
-// eight
-// nine
-// ten
-// "#
-// .unindent(),
-// );
-
-// cx.update_editor(|editor, cx| editor.move_page_down(&MovePageDown::default(), cx));
-// cx.assert_editor_state(
-// &r#"
-// one
-// two
-// three
-// ˇfour
-// five
-// sixˇ
-// seven
-// eight
-// nine
-// ten
-// "#
-// .unindent(),
-// );
-
-// cx.update_editor(|editor, cx| editor.move_page_down(&MovePageDown::default(), cx));
-// cx.assert_editor_state(
-// &r#"
-// one
-// two
-// three
-// four
-// five
-// six
-// ˇseven
-// eight
-// nineˇ
-// ten
-// "#
-// .unindent(),
-// );
-
-// cx.update_editor(|editor, cx| editor.move_page_up(&MovePageUp::default(), cx));
-// cx.assert_editor_state(
-// &r#"
-// one
-// two
-// three
-// ˇfour
-// five
-// sixˇ
-// seven
-// eight
-// nine
-// ten
-// "#
-// .unindent(),
-// );
-
-// cx.update_editor(|editor, cx| editor.move_page_up(&MovePageUp::default(), cx));
-// cx.assert_editor_state(
-// &r#"
-// ˇone
-// two
-// threeˇ
-// four
-// five
-// six
-// seven
-// eight
-// nine
-// ten
-// "#
-// .unindent(),
-// );
-
-// // Test select collapsing
-// cx.update_editor(|editor, cx| {
-// editor.move_page_down(&MovePageDown::default(), cx);
-// editor.move_page_down(&MovePageDown::default(), cx);
-// editor.move_page_down(&MovePageDown::default(), cx);
-// });
-// cx.assert_editor_state(
-// &r#"
-// one
-// two
-// three
-// four
-// five
-// six
-// seven
-// eight
-// nine
-// ˇten
-// ˇ"#
-// .unindent(),
-// );
-// }
-
-// #[gpui::test]
-// async fn test_delete_to_beginning_of_line(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-// let mut cx = EditorTestContext::new(cx).await;
-// cx.set_state("one «two threeˇ» four");
-// cx.update_editor(|editor, cx| {
-// editor.delete_to_beginning_of_line(&DeleteToBeginningOfLine, cx);
-// assert_eq!(editor.text(cx), " four");
-// });
-// }
-
-// #[gpui::test]
-// fn test_delete_to_word_boundary(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("one two three four", cx);
-// build_editor(buffer.clone(), cx)
-// })
-// .root(cx);
-
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// // an empty selection - the preceding word fragment is deleted
-// DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
-// // characters selected - they are deleted
-// DisplayPoint::new(0, 9)..DisplayPoint::new(0, 12),
-// ])
-// });
-// view.delete_to_previous_word_start(&DeleteToPreviousWordStart, cx);
-// assert_eq!(view.buffer.read(cx).read(cx).text(), "e two te four");
-// });
-
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// // an empty selection - the following word fragment is deleted
-// DisplayPoint::new(0, 3)..DisplayPoint::new(0, 3),
-// // characters selected - they are deleted
-// DisplayPoint::new(0, 9)..DisplayPoint::new(0, 10),
-// ])
-// });
-// view.delete_to_next_word_end(&DeleteToNextWordEnd, cx);
-// assert_eq!(view.buffer.read(cx).read(cx).text(), "e t te our");
-// });
-// }
-
-// #[gpui::test]
-// fn test_newline(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("aaaa\n bbbb\n", cx);
-// build_editor(buffer.clone(), cx)
-// })
-// .root(cx);
-
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
-// DisplayPoint::new(1, 2)..DisplayPoint::new(1, 2),
-// DisplayPoint::new(1, 6)..DisplayPoint::new(1, 6),
-// ])
-// });
-
-// view.newline(&Newline, cx);
-// assert_eq!(view.text(cx), "aa\naa\n \n bb\n bb\n");
-// });
-// }
-
-// #[gpui::test]
-// fn test_newline_with_old_selections(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let editor = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple(
-// "
-// a
-// b(
-// X
-// )
-// c(
-// X
-// )
-// "
-// .unindent()
-// .as_str(),
-// cx,
-// );
-// let mut editor = build_editor(buffer.clone(), cx);
-// editor.change_selections(None, cx, |s| {
-// s.select_ranges([
-// Point::new(2, 4)..Point::new(2, 5),
-// Point::new(5, 4)..Point::new(5, 5),
-// ])
-// });
-// editor
-// })
-// .root(cx);
-
-// editor.update(cx, |editor, cx| {
-// // Edit the buffer directly, deleting ranges surrounding the editor's selections
-// editor.buffer.update(cx, |buffer, cx| {
-// buffer.edit(
-// [
-// (Point::new(1, 2)..Point::new(3, 0), ""),
-// (Point::new(4, 2)..Point::new(6, 0), ""),
-// ],
-// None,
-// cx,
-// );
-// assert_eq!(
-// buffer.read(cx).text(),
-// "
-// a
-// b()
-// c()
-// "
-// .unindent()
-// );
-// });
-// assert_eq!(
-// editor.selections.ranges(cx),
-// &[
-// Point::new(1, 2)..Point::new(1, 2),
-// Point::new(2, 2)..Point::new(2, 2),
-// ],
-// );
-
-// editor.newline(&Newline, cx);
-// assert_eq!(
-// editor.text(cx),
-// "
-// a
-// b(
-// )
-// c(
-// )
-// "
-// .unindent()
-// );
-
-// // The selections are moved after the inserted newlines
-// assert_eq!(
-// editor.selections.ranges(cx),
-// &[
-// Point::new(2, 0)..Point::new(2, 0),
-// Point::new(4, 0)..Point::new(4, 0),
-// ],
-// );
-// });
-// }
-
-// #[gpui::test]
-// async fn test_newline_above(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |settings| {
-// settings.defaults.tab_size = NonZeroU32::new(4)
-// });
-
-// let language = Arc::new(
-// Language::new(
-// LanguageConfig::default(),
-// Some(tree_sitter_rust::language()),
-// )
-// .with_indents_query(r#"(_ "(" ")" @end) @indent"#)
-// .unwrap(),
-// );
-
-// let mut cx = EditorTestContext::new(cx).await;
-// cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
-// cx.set_state(indoc! {"
-// const a: ˇA = (
-// (ˇ
-// «const_functionˇ»(ˇ),
-// so«mˇ»et«hˇ»ing_ˇelse,ˇ
-// )ˇ
-// ˇ);ˇ
-// "});
-
-// cx.update_editor(|e, cx| e.newline_above(&NewlineAbove, cx));
-// cx.assert_editor_state(indoc! {"
-// ˇ
-// const a: A = (
-// ˇ
-// (
-// ˇ
-// ˇ
-// const_function(),
-// ˇ
-// ˇ
-// ˇ
-// ˇ
-// something_else,
-// ˇ
-// )
-// ˇ
-// ˇ
-// );
-// "});
-// }
-
-// #[gpui::test]
-// async fn test_newline_below(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |settings| {
-// settings.defaults.tab_size = NonZeroU32::new(4)
-// });
-
-// let language = Arc::new(
-// Language::new(
-// LanguageConfig::default(),
-// Some(tree_sitter_rust::language()),
-// )
-// .with_indents_query(r#"(_ "(" ")" @end) @indent"#)
-// .unwrap(),
-// );
-
-// let mut cx = EditorTestContext::new(cx).await;
-// cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
-// cx.set_state(indoc! {"
-// const a: ˇA = (
-// (ˇ
-// «const_functionˇ»(ˇ),
-// so«mˇ»et«hˇ»ing_ˇelse,ˇ
-// )ˇ
-// ˇ);ˇ
-// "});
-
-// cx.update_editor(|e, cx| e.newline_below(&NewlineBelow, cx));
-// cx.assert_editor_state(indoc! {"
-// const a: A = (
-// ˇ
-// (
-// ˇ
-// const_function(),
-// ˇ
-// ˇ
-// something_else,
-// ˇ
-// ˇ
-// ˇ
-// ˇ
-// )
-// ˇ
-// );
-// ˇ
-// ˇ
-// "});
-// }
-
-// #[gpui::test]
-// async fn test_newline_comments(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |settings| {
-// settings.defaults.tab_size = NonZeroU32::new(4)
-// });
-
-// let language = Arc::new(Language::new(
-// LanguageConfig {
-// line_comment: Some("//".into()),
-// ..LanguageConfig::default()
-// },
-// None,
-// ));
-// {
-// let mut cx = EditorTestContext::new(cx).await;
-// cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
-// cx.set_state(indoc! {"
-// // Fooˇ
-// "});
-
-// cx.update_editor(|e, cx| e.newline(&Newline, cx));
-// cx.assert_editor_state(indoc! {"
-// // Foo
-// //ˇ
-// "});
-// // Ensure that if cursor is before the comment start, we do not actually insert a comment prefix.
-// cx.set_state(indoc! {"
-// ˇ// Foo
-// "});
-// cx.update_editor(|e, cx| e.newline(&Newline, cx));
-// cx.assert_editor_state(indoc! {"
-
-// ˇ// Foo
-// "});
-// }
-// // Ensure that comment continuations can be disabled.
-// update_test_language_settings(cx, |settings| {
-// settings.defaults.extend_comment_on_newline = Some(false);
-// });
-// let mut cx = EditorTestContext::new(cx).await;
-// cx.set_state(indoc! {"
-// // Fooˇ
-// "});
-// cx.update_editor(|e, cx| e.newline(&Newline, cx));
-// cx.assert_editor_state(indoc! {"
-// // Foo
-// ˇ
-// "});
-// }
-
-// #[gpui::test]
-// fn test_insert_with_old_selections(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let editor = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("a( X ), b( Y ), c( Z )", cx);
-// let mut editor = build_editor(buffer.clone(), cx);
-// editor.change_selections(None, cx, |s| s.select_ranges([3..4, 11..12, 19..20]));
-// editor
-// })
-// .root(cx);
-
-// editor.update(cx, |editor, cx| {
-// // Edit the buffer directly, deleting ranges surrounding the editor's selections
-// editor.buffer.update(cx, |buffer, cx| {
-// buffer.edit([(2..5, ""), (10..13, ""), (18..21, "")], None, cx);
-// assert_eq!(buffer.read(cx).text(), "a(), b(), c()".unindent());
-// });
-// assert_eq!(editor.selections.ranges(cx), &[2..2, 7..7, 12..12],);
-
-// editor.insert("Z", cx);
-// assert_eq!(editor.text(cx), "a(Z), b(Z), c(Z)");
-
-// // The selections are moved after the inserted characters
-// assert_eq!(editor.selections.ranges(cx), &[3..3, 9..9, 15..15],);
-// });
-// }
-
-// #[gpui::test]
-// async fn test_tab(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |settings| {
-// settings.defaults.tab_size = NonZeroU32::new(3)
-// });
-
-// let mut cx = EditorTestContext::new(cx).await;
-// cx.set_state(indoc! {"
-// ˇabˇc
-// ˇ🏀ˇ🏀ˇefg
-// dˇ
-// "});
-// cx.update_editor(|e, cx| e.tab(&Tab, cx));
-// cx.assert_editor_state(indoc! {"
-// ˇab ˇc
-// ˇ🏀 ˇ🏀 ˇefg
-// d ˇ
-// "});
-
-// cx.set_state(indoc! {"
-// a
-// «🏀ˇ»🏀«🏀ˇ»🏀«🏀ˇ»
-// "});
-// cx.update_editor(|e, cx| e.tab(&Tab, cx));
-// cx.assert_editor_state(indoc! {"
-// a
-// «🏀ˇ»🏀«🏀ˇ»🏀«🏀ˇ»
-// "});
-// }
-
-// #[gpui::test]
-// async fn test_tab_in_leading_whitespace_auto_indents_lines(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-
-// let mut cx = EditorTestContext::new(cx).await;
-// let language = Arc::new(
-// Language::new(
-// LanguageConfig::default(),
-// Some(tree_sitter_rust::language()),
-// )
-// .with_indents_query(r#"(_ "(" ")" @end) @indent"#)
-// .unwrap(),
-// );
-// cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
-
-// // cursors that are already at the suggested indent level insert
-// // a soft tab. cursors that are to the left of the suggested indent
-// // auto-indent their line.
-// cx.set_state(indoc! {"
-// ˇ
-// const a: B = (
-// c(
-// d(
-// ˇ
-// )
-// ˇ
-// ˇ )
-// );
-// "});
-// cx.update_editor(|e, cx| e.tab(&Tab, cx));
-// cx.assert_editor_state(indoc! {"
-// ˇ
-// const a: B = (
-// c(
-// d(
-// ˇ
-// )
-// ˇ
-// ˇ)
-// );
-// "});
-
-// // handle auto-indent when there are multiple cursors on the same line
-// cx.set_state(indoc! {"
-// const a: B = (
-// c(
-// ˇ ˇ
-// ˇ )
-// );
-// "});
-// cx.update_editor(|e, cx| e.tab(&Tab, cx));
-// cx.assert_editor_state(indoc! {"
-// const a: B = (
-// c(
-// ˇ
-// ˇ)
-// );
-// "});
-// }
-
-// #[gpui::test]
-// async fn test_tab_with_mixed_whitespace(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |settings| {
-// settings.defaults.tab_size = NonZeroU32::new(4)
-// });
-
-// let language = Arc::new(
-// Language::new(
-// LanguageConfig::default(),
-// Some(tree_sitter_rust::language()),
-// )
-// .with_indents_query(r#"(_ "{" "}" @end) @indent"#)
-// .unwrap(),
-// );
-
-// let mut cx = EditorTestContext::new(cx).await;
-// cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
-// cx.set_state(indoc! {"
-// fn a() {
-// if b {
-// \t ˇc
-// }
-// }
-// "});
-
-// cx.update_editor(|e, cx| e.tab(&Tab, cx));
-// cx.assert_editor_state(indoc! {"
-// fn a() {
-// if b {
-// ˇc
-// }
-// }
-// "});
-// }
-
-// #[gpui::test]
-// async fn test_indent_outdent(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |settings| {
-// settings.defaults.tab_size = NonZeroU32::new(4);
-// });
-
-// let mut cx = EditorTestContext::new(cx).await;
-
-// cx.set_state(indoc! {"
-// «oneˇ» «twoˇ»
-// three
-// four
-// "});
-// cx.update_editor(|e, cx| e.tab(&Tab, cx));
-// cx.assert_editor_state(indoc! {"
-// «oneˇ» «twoˇ»
-// three
-// four
-// "});
-
-// cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
-// cx.assert_editor_state(indoc! {"
-// «oneˇ» «twoˇ»
-// three
-// four
-// "});
-
-// // select across line ending
-// cx.set_state(indoc! {"
-// one two
-// t«hree
-// ˇ» four
-// "});
-// cx.update_editor(|e, cx| e.tab(&Tab, cx));
-// cx.assert_editor_state(indoc! {"
-// one two
-// t«hree
-// ˇ» four
-// "});
-
-// cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
-// cx.assert_editor_state(indoc! {"
-// one two
-// t«hree
-// ˇ» four
-// "});
-
-// // Ensure that indenting/outdenting works when the cursor is at column 0.
-// cx.set_state(indoc! {"
-// one two
-// ˇthree
-// four
-// "});
-// cx.update_editor(|e, cx| e.tab(&Tab, cx));
-// cx.assert_editor_state(indoc! {"
-// one two
-// ˇthree
-// four
-// "});
-
-// cx.set_state(indoc! {"
-// one two
-// ˇ three
-// four
-// "});
-// cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
-// cx.assert_editor_state(indoc! {"
-// one two
-// ˇthree
-// four
-// "});
-// }
-
-// #[gpui::test]
-// async fn test_indent_outdent_with_hard_tabs(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |settings| {
-// settings.defaults.hard_tabs = Some(true);
-// });
-
-// let mut cx = EditorTestContext::new(cx).await;
-
-// // select two ranges on one line
-// cx.set_state(indoc! {"
-// «oneˇ» «twoˇ»
-// three
-// four
-// "});
-// cx.update_editor(|e, cx| e.tab(&Tab, cx));
-// cx.assert_editor_state(indoc! {"
-// \t«oneˇ» «twoˇ»
-// three
-// four
-// "});
-// cx.update_editor(|e, cx| e.tab(&Tab, cx));
-// cx.assert_editor_state(indoc! {"
-// \t\t«oneˇ» «twoˇ»
-// three
-// four
-// "});
-// cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
-// cx.assert_editor_state(indoc! {"
-// \t«oneˇ» «twoˇ»
-// three
-// four
-// "});
-// cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
-// cx.assert_editor_state(indoc! {"
-// «oneˇ» «twoˇ»
-// three
-// four
-// "});
-
-// // select across a line ending
-// cx.set_state(indoc! {"
-// one two
-// t«hree
-// ˇ»four
-// "});
-// cx.update_editor(|e, cx| e.tab(&Tab, cx));
-// cx.assert_editor_state(indoc! {"
-// one two
-// \tt«hree
-// ˇ»four
-// "});
-// cx.update_editor(|e, cx| e.tab(&Tab, cx));
-// cx.assert_editor_state(indoc! {"
-// one two
-// \t\tt«hree
-// ˇ»four
-// "});
-// cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
-// cx.assert_editor_state(indoc! {"
-// one two
-// \tt«hree
-// ˇ»four
-// "});
-// cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
-// cx.assert_editor_state(indoc! {"
-// one two
-// t«hree
-// ˇ»four
-// "});
-
-// // Ensure that indenting/outdenting works when the cursor is at column 0.
-// cx.set_state(indoc! {"
-// one two
-// ˇthree
-// four
-// "});
-// cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
-// cx.assert_editor_state(indoc! {"
-// one two
-// ˇthree
-// four
-// "});
-// cx.update_editor(|e, cx| e.tab(&Tab, cx));
-// cx.assert_editor_state(indoc! {"
-// one two
-// \tˇthree
-// four
-// "});
-// cx.update_editor(|e, cx| e.tab_prev(&TabPrev, cx));
-// cx.assert_editor_state(indoc! {"
-// one two
-// ˇthree
-// four
-// "});
-// }
-
-// #[gpui::test]
-// fn test_indent_outdent_with_excerpts(cx: &mut TestAppContext) {
-// init_test(cx, |settings| {
-// settings.languages.extend([
-// (
-// "TOML".into(),
-// LanguageSettingsContent {
-// tab_size: NonZeroU32::new(2),
-// ..Default::default()
-// },
-// ),
-// (
-// "Rust".into(),
-// LanguageSettingsContent {
-// tab_size: NonZeroU32::new(4),
-// ..Default::default()
-// },
-// ),
-// ]);
-// });
-
-// let toml_language = Arc::new(Language::new(
-// LanguageConfig {
-// name: "TOML".into(),
-// ..Default::default()
-// },
-// None,
-// ));
-// let rust_language = Arc::new(Language::new(
-// LanguageConfig {
-// name: "Rust".into(),
-// ..Default::default()
-// },
-// None,
-// ));
-
-// let toml_buffer = cx.add_model(|cx| {
-// Buffer::new(0, cx.model_id() as u64, "a = 1\nb = 2\n").with_language(toml_language, cx)
-// });
-// let rust_buffer = cx.add_model(|cx| {
-// Buffer::new(0, cx.model_id() as u64, "const c: usize = 3;\n")
-// .with_language(rust_language, cx)
-// });
-// let multibuffer = cx.add_model(|cx| {
-// let mut multibuffer = MultiBuffer::new(0);
-// multibuffer.push_excerpts(
-// toml_buffer.clone(),
-// [ExcerptRange {
-// context: Point::new(0, 0)..Point::new(2, 0),
-// primary: None,
-// }],
-// cx,
-// );
-// multibuffer.push_excerpts(
-// rust_buffer.clone(),
-// [ExcerptRange {
-// context: Point::new(0, 0)..Point::new(1, 0),
-// primary: None,
-// }],
-// cx,
-// );
-// multibuffer
-// });
-
-// cx.add_window(|cx| {
-// let mut editor = build_editor(multibuffer, cx);
-
-// assert_eq!(
-// editor.text(cx),
-// indoc! {"
-// a = 1
-// b = 2
-
-// const c: usize = 3;
-// "}
-// );
-
-// select_ranges(
-// &mut editor,
-// indoc! {"
-// «aˇ» = 1
-// b = 2
-
-// «const c:ˇ» usize = 3;
-// "},
-// cx,
-// );
-
-// editor.tab(&Tab, cx);
-// assert_text_with_selections(
-// &mut editor,
-// indoc! {"
-// «aˇ» = 1
-// b = 2
-
-// «const c:ˇ» usize = 3;
-// "},
-// cx,
-// );
-// editor.tab_prev(&TabPrev, cx);
-// assert_text_with_selections(
-// &mut editor,
-// indoc! {"
-// «aˇ» = 1
-// b = 2
-
-// «const c:ˇ» usize = 3;
-// "},
-// cx,
-// );
-
-// editor
-// });
-// }
-
-// #[gpui::test]
-// async fn test_backspace(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-
-// let mut cx = EditorTestContext::new(cx).await;
-
-// // Basic backspace
-// cx.set_state(indoc! {"
-// onˇe two three
-// fou«rˇ» five six
-// seven «ˇeight nine
-// »ten
-// "});
-// cx.update_editor(|e, cx| e.backspace(&Backspace, cx));
-// cx.assert_editor_state(indoc! {"
-// oˇe two three
-// fouˇ five six
-// seven ˇten
-// "});
-
-// // Test backspace inside and around indents
-// cx.set_state(indoc! {"
-// zero
-// ˇone
-// ˇtwo
-// ˇ ˇ ˇ three
-// ˇ ˇ four
-// "});
-// cx.update_editor(|e, cx| e.backspace(&Backspace, cx));
-// cx.assert_editor_state(indoc! {"
-// zero
-// ˇone
-// ˇtwo
-// ˇ threeˇ four
-// "});
-
-// // Test backspace with line_mode set to true
-// cx.update_editor(|e, _| e.selections.line_mode = true);
-// cx.set_state(indoc! {"
-// The ˇquick ˇbrown
-// fox jumps over
-// the lazy dog
-// ˇThe qu«ick bˇ»rown"});
-// cx.update_editor(|e, cx| e.backspace(&Backspace, cx));
-// cx.assert_editor_state(indoc! {"
-// ˇfox jumps over
-// the lazy dogˇ"});
-// }
-
-// #[gpui::test]
-// async fn test_delete(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-
-// let mut cx = EditorTestContext::new(cx).await;
-// cx.set_state(indoc! {"
-// onˇe two three
-// fou«rˇ» five six
-// seven «ˇeight nine
-// »ten
-// "});
-// cx.update_editor(|e, cx| e.delete(&Delete, cx));
-// cx.assert_editor_state(indoc! {"
-// onˇ two three
-// fouˇ five six
-// seven ˇten
-// "});
-
-// // Test backspace with line_mode set to true
-// cx.update_editor(|e, _| e.selections.line_mode = true);
-// cx.set_state(indoc! {"
-// The ˇquick ˇbrown
-// fox «ˇjum»ps over
-// the lazy dog
-// ˇThe qu«ick bˇ»rown"});
-// cx.update_editor(|e, cx| e.backspace(&Backspace, cx));
-// cx.assert_editor_state("ˇthe lazy dogˇ");
-// }
-
-// #[gpui::test]
-// fn test_delete_line(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("abc\ndef\nghi\n", cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(1, 0)..DisplayPoint::new(1, 1),
-// DisplayPoint::new(3, 0)..DisplayPoint::new(3, 0),
-// ])
-// });
-// view.delete_line(&DeleteLine, cx);
-// assert_eq!(view.display_text(cx), "ghi");
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0),
-// DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1)
-// ]
-// );
-// });
-
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("abc\ndef\nghi\n", cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([DisplayPoint::new(2, 0)..DisplayPoint::new(0, 1)])
-// });
-// view.delete_line(&DeleteLine, cx);
-// assert_eq!(view.display_text(cx), "ghi\n");
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1)]
-// );
-// });
-// }
-
-// #[gpui::test]
-// fn test_join_lines_with_single_selection(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// cx.add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("aaa\nbbb\nccc\nddd\n\n", cx);
-// let mut editor = build_editor(buffer.clone(), cx);
-// let buffer = buffer.read(cx).as_singleton().unwrap();
-
-// assert_eq!(
-// editor.selections.ranges::<Point>(cx),
-// &[Point::new(0, 0)..Point::new(0, 0)]
-// );
-
-// // When on single line, replace newline at end by space
-// editor.join_lines(&JoinLines, cx);
-// assert_eq!(buffer.read(cx).text(), "aaa bbb\nccc\nddd\n\n");
-// assert_eq!(
-// editor.selections.ranges::<Point>(cx),
-// &[Point::new(0, 3)..Point::new(0, 3)]
-// );
-
-// // When multiple lines are selected, remove newlines that are spanned by the selection
-// editor.change_selections(None, cx, |s| {
-// s.select_ranges([Point::new(0, 5)..Point::new(2, 2)])
-// });
-// editor.join_lines(&JoinLines, cx);
-// assert_eq!(buffer.read(cx).text(), "aaa bbb ccc ddd\n\n");
-// assert_eq!(
-// editor.selections.ranges::<Point>(cx),
-// &[Point::new(0, 11)..Point::new(0, 11)]
-// );
-
-// // Undo should be transactional
-// editor.undo(&Undo, cx);
-// assert_eq!(buffer.read(cx).text(), "aaa bbb\nccc\nddd\n\n");
-// assert_eq!(
-// editor.selections.ranges::<Point>(cx),
-// &[Point::new(0, 5)..Point::new(2, 2)]
-// );
-
-// // When joining an empty line don't insert a space
-// editor.change_selections(None, cx, |s| {
-// s.select_ranges([Point::new(2, 1)..Point::new(2, 2)])
-// });
-// editor.join_lines(&JoinLines, cx);
-// assert_eq!(buffer.read(cx).text(), "aaa bbb\nccc\nddd\n");
-// assert_eq!(
-// editor.selections.ranges::<Point>(cx),
-// [Point::new(2, 3)..Point::new(2, 3)]
-// );
-
-// // We can remove trailing newlines
-// editor.join_lines(&JoinLines, cx);
-// assert_eq!(buffer.read(cx).text(), "aaa bbb\nccc\nddd");
-// assert_eq!(
-// editor.selections.ranges::<Point>(cx),
-// [Point::new(2, 3)..Point::new(2, 3)]
-// );
-
-// // We don't blow up on the last line
-// editor.join_lines(&JoinLines, cx);
-// assert_eq!(buffer.read(cx).text(), "aaa bbb\nccc\nddd");
-// assert_eq!(
-// editor.selections.ranges::<Point>(cx),
-// [Point::new(2, 3)..Point::new(2, 3)]
-// );
-
-// // reset to test indentation
-// editor.buffer.update(cx, |buffer, cx| {
-// buffer.edit(
-// [
-// (Point::new(1, 0)..Point::new(1, 2), " "),
-// (Point::new(2, 0)..Point::new(2, 3), " \n\td"),
-// ],
-// None,
-// cx,
-// )
-// });
-
-// // We remove any leading spaces
-// assert_eq!(buffer.read(cx).text(), "aaa bbb\n c\n \n\td");
-// editor.change_selections(None, cx, |s| {
-// s.select_ranges([Point::new(0, 1)..Point::new(0, 1)])
-// });
-// editor.join_lines(&JoinLines, cx);
-// assert_eq!(buffer.read(cx).text(), "aaa bbb c\n \n\td");
-
-// // We don't insert a space for a line containing only spaces
-// editor.join_lines(&JoinLines, cx);
-// assert_eq!(buffer.read(cx).text(), "aaa bbb c\n\td");
-
-// // We ignore any leading tabs
-// editor.join_lines(&JoinLines, cx);
-// assert_eq!(buffer.read(cx).text(), "aaa bbb c d");
-
-// editor
-// });
-// }
-
-// #[gpui::test]
-// fn test_join_lines_with_multi_selection(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// cx.add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("aaa\nbbb\nccc\nddd\n\n", cx);
-// let mut editor = build_editor(buffer.clone(), cx);
-// let buffer = buffer.read(cx).as_singleton().unwrap();
-
-// editor.change_selections(None, cx, |s| {
-// s.select_ranges([
-// Point::new(0, 2)..Point::new(1, 1),
-// Point::new(1, 2)..Point::new(1, 2),
-// Point::new(3, 1)..Point::new(3, 2),
-// ])
-// });
-
-// editor.join_lines(&JoinLines, cx);
-// assert_eq!(buffer.read(cx).text(), "aaa bbb ccc\nddd\n");
-
-// assert_eq!(
-// editor.selections.ranges::<Point>(cx),
-// [
-// Point::new(0, 7)..Point::new(0, 7),
-// Point::new(1, 3)..Point::new(1, 3)
-// ]
-// );
-// editor
-// });
-// }
-
-// #[gpui::test]
-// async fn test_manipulate_lines_with_single_selection(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let mut cx = EditorTestContext::new(cx).await;
-
-// // Test sort_lines_case_insensitive()
-// cx.set_state(indoc! {"
-// «z
-// y
-// x
-// Z
-// Y
-// Xˇ»
-// "});
-// cx.update_editor(|e, cx| e.sort_lines_case_insensitive(&SortLinesCaseInsensitive, cx));
-// cx.assert_editor_state(indoc! {"
-// «x
-// X
-// y
-// Y
-// z
-// Zˇ»
-// "});
-
-// // Test reverse_lines()
-// cx.set_state(indoc! {"
-// «5
-// 4
-// 3
-// 2
-// 1ˇ»
-// "});
-// cx.update_editor(|e, cx| e.reverse_lines(&ReverseLines, cx));
-// cx.assert_editor_state(indoc! {"
-// «1
-// 2
-// 3
-// 4
-// 5ˇ»
-// "});
-
-// // Skip testing shuffle_line()
-
-// // From here on out, test more complex cases of manipulate_lines() with a single driver method: sort_lines_case_sensitive()
-// // Since all methods calling manipulate_lines() are doing the exact same general thing (reordering lines)
-
-// // Don't manipulate when cursor is on single line, but expand the selection
-// cx.set_state(indoc! {"
-// ddˇdd
-// ccc
-// bb
-// a
-// "});
-// cx.update_editor(|e, cx| e.sort_lines_case_sensitive(&SortLinesCaseSensitive, cx));
-// cx.assert_editor_state(indoc! {"
-// «ddddˇ»
-// ccc
-// bb
-// a
-// "});
-
-// // Basic manipulate case
-// // Start selection moves to column 0
-// // End of selection shrinks to fit shorter line
-// cx.set_state(indoc! {"
-// dd«d
-// ccc
-// bb
-// aaaaaˇ»
-// "});
-// cx.update_editor(|e, cx| e.sort_lines_case_sensitive(&SortLinesCaseSensitive, cx));
-// cx.assert_editor_state(indoc! {"
-// «aaaaa
-// bb
-// ccc
-// dddˇ»
-// "});
-
-// // Manipulate case with newlines
-// cx.set_state(indoc! {"
-// dd«d
-// ccc
-
-// bb
-// aaaaa
-
-// ˇ»
-// "});
-// cx.update_editor(|e, cx| e.sort_lines_case_sensitive(&SortLinesCaseSensitive, cx));
-// cx.assert_editor_state(indoc! {"
-// «
-
-// aaaaa
-// bb
-// ccc
-// dddˇ»
-
-// "});
-// }
-
-// #[gpui::test]
-// async fn test_manipulate_lines_with_multi_selection(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let mut cx = EditorTestContext::new(cx).await;
-
-// // Manipulate with multiple selections on a single line
-// cx.set_state(indoc! {"
-// dd«dd
-// cˇ»c«c
-// bb
-// aaaˇ»aa
-// "});
-// cx.update_editor(|e, cx| e.sort_lines_case_sensitive(&SortLinesCaseSensitive, cx));
-// cx.assert_editor_state(indoc! {"
-// «aaaaa
-// bb
-// ccc
-// ddddˇ»
-// "});
-
-// // Manipulate with multiple disjoin selections
-// cx.set_state(indoc! {"
-// 5«
-// 4
-// 3
-// 2
-// 1ˇ»
-
-// dd«dd
-// ccc
-// bb
-// aaaˇ»aa
-// "});
-// cx.update_editor(|e, cx| e.sort_lines_case_sensitive(&SortLinesCaseSensitive, cx));
-// cx.assert_editor_state(indoc! {"
-// «1
-// 2
-// 3
-// 4
-// 5ˇ»
-
-// «aaaaa
-// bb
-// ccc
-// ddddˇ»
-// "});
-// }
-
-// #[gpui::test]
-// async fn test_manipulate_text(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let mut cx = EditorTestContext::new(cx).await;
-
-// // Test convert_to_upper_case()
-// cx.set_state(indoc! {"
-// «hello worldˇ»
-// "});
-// cx.update_editor(|e, cx| e.convert_to_upper_case(&ConvertToUpperCase, cx));
-// cx.assert_editor_state(indoc! {"
-// «HELLO WORLDˇ»
-// "});
-
-// // Test convert_to_lower_case()
-// cx.set_state(indoc! {"
-// «HELLO WORLDˇ»
-// "});
-// cx.update_editor(|e, cx| e.convert_to_lower_case(&ConvertToLowerCase, cx));
-// cx.assert_editor_state(indoc! {"
-// «hello worldˇ»
-// "});
-
-// // Test multiple line, single selection case
-// // Test code hack that covers the fact that to_case crate doesn't support '\n' as a word boundary
-// cx.set_state(indoc! {"
-// «The quick brown
-// fox jumps over
-// the lazy dogˇ»
-// "});
-// cx.update_editor(|e, cx| e.convert_to_title_case(&ConvertToTitleCase, cx));
-// cx.assert_editor_state(indoc! {"
-// «The Quick Brown
-// Fox Jumps Over
-// The Lazy Dogˇ»
-// "});
-
-// // Test multiple line, single selection case
-// // Test code hack that covers the fact that to_case crate doesn't support '\n' as a word boundary
-// cx.set_state(indoc! {"
-// «The quick brown
-// fox jumps over
-// the lazy dogˇ»
-// "});
-// cx.update_editor(|e, cx| e.convert_to_upper_camel_case(&ConvertToUpperCamelCase, cx));
-// cx.assert_editor_state(indoc! {"
-// «TheQuickBrown
-// FoxJumpsOver
-// TheLazyDogˇ»
-// "});
-
-// // From here on out, test more complex cases of manipulate_text()
-
-// // Test no selection case - should affect words cursors are in
-// // Cursor at beginning, middle, and end of word
-// cx.set_state(indoc! {"
-// ˇhello big beauˇtiful worldˇ
-// "});
-// cx.update_editor(|e, cx| e.convert_to_upper_case(&ConvertToUpperCase, cx));
-// cx.assert_editor_state(indoc! {"
-// «HELLOˇ» big «BEAUTIFULˇ» «WORLDˇ»
-// "});
-
-// // Test multiple selections on a single line and across multiple lines
-// cx.set_state(indoc! {"
-// «Theˇ» quick «brown
-// foxˇ» jumps «overˇ»
-// the «lazyˇ» dog
-// "});
-// cx.update_editor(|e, cx| e.convert_to_upper_case(&ConvertToUpperCase, cx));
-// cx.assert_editor_state(indoc! {"
-// «THEˇ» quick «BROWN
-// FOXˇ» jumps «OVERˇ»
-// the «LAZYˇ» dog
-// "});
-
-// // Test case where text length grows
-// cx.set_state(indoc! {"
-// «tschüߡ»
-// "});
-// cx.update_editor(|e, cx| e.convert_to_upper_case(&ConvertToUpperCase, cx));
-// cx.assert_editor_state(indoc! {"
-// «TSCHÜSSˇ»
-// "});
-
-// // Test to make sure we don't crash when text shrinks
-// cx.set_state(indoc! {"
-// aaa_bbbˇ
-// "});
-// cx.update_editor(|e, cx| e.convert_to_lower_camel_case(&ConvertToLowerCamelCase, cx));
-// cx.assert_editor_state(indoc! {"
-// «aaaBbbˇ»
-// "});
-
-// // Test to make sure we all aware of the fact that each word can grow and shrink
-// // Final selections should be aware of this fact
-// cx.set_state(indoc! {"
-// aaa_bˇbb bbˇb_ccc ˇccc_ddd
-// "});
-// cx.update_editor(|e, cx| e.convert_to_lower_camel_case(&ConvertToLowerCamelCase, cx));
-// cx.assert_editor_state(indoc! {"
-// «aaaBbbˇ» «bbbCccˇ» «cccDddˇ»
-// "});
-// }
-
-// #[gpui::test]
-// fn test_duplicate_line(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("abc\ndef\nghi\n", cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// DisplayPoint::new(0, 0)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
-// DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0),
-// DisplayPoint::new(3, 0)..DisplayPoint::new(3, 0),
-// ])
-// });
-// view.duplicate_line(&DuplicateLine, cx);
-// assert_eq!(view.display_text(cx), "abc\nabc\ndef\ndef\nghi\n\n");
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(1, 0)..DisplayPoint::new(1, 1),
-// DisplayPoint::new(1, 2)..DisplayPoint::new(1, 2),
-// DisplayPoint::new(3, 0)..DisplayPoint::new(3, 0),
-// DisplayPoint::new(6, 0)..DisplayPoint::new(6, 0),
-// ]
-// );
-// });
-
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("abc\ndef\nghi\n", cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// DisplayPoint::new(0, 1)..DisplayPoint::new(1, 1),
-// DisplayPoint::new(1, 2)..DisplayPoint::new(2, 1),
-// ])
-// });
-// view.duplicate_line(&DuplicateLine, cx);
-// assert_eq!(view.display_text(cx), "abc\ndef\nghi\nabc\ndef\nghi\n");
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(3, 1)..DisplayPoint::new(4, 1),
-// DisplayPoint::new(4, 2)..DisplayPoint::new(5, 1),
-// ]
-// );
-// });
-// }
-
-// #[gpui::test]
-// fn test_move_line_up_down(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple(&sample_text(10, 5, 'a'), cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-// view.update(cx, |view, cx| {
-// view.fold_ranges(
-// vec![
-// Point::new(0, 2)..Point::new(1, 2),
-// Point::new(2, 3)..Point::new(4, 1),
-// Point::new(7, 0)..Point::new(8, 4),
-// ],
-// true,
-// cx,
-// );
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(3, 1)..DisplayPoint::new(3, 1),
-// DisplayPoint::new(3, 2)..DisplayPoint::new(4, 3),
-// DisplayPoint::new(5, 0)..DisplayPoint::new(5, 2),
-// ])
-// });
-// assert_eq!(
-// view.display_text(cx),
-// "aa⋯bbb\nccc⋯eeee\nfffff\nggggg\n⋯i\njjjjj"
-// );
-
-// view.move_line_up(&MoveLineUp, cx);
-// assert_eq!(
-// view.display_text(cx),
-// "aa⋯bbb\nccc⋯eeee\nggggg\n⋯i\njjjjj\nfffff"
-// );
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(2, 1)..DisplayPoint::new(2, 1),
-// DisplayPoint::new(2, 2)..DisplayPoint::new(3, 3),
-// DisplayPoint::new(4, 0)..DisplayPoint::new(4, 2)
-// ]
-// );
-// });
-
-// view.update(cx, |view, cx| {
-// view.move_line_down(&MoveLineDown, cx);
-// assert_eq!(
-// view.display_text(cx),
-// "ccc⋯eeee\naa⋯bbb\nfffff\nggggg\n⋯i\njjjjj"
-// );
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(1, 1)..DisplayPoint::new(1, 1),
-// DisplayPoint::new(3, 1)..DisplayPoint::new(3, 1),
-// DisplayPoint::new(3, 2)..DisplayPoint::new(4, 3),
-// DisplayPoint::new(5, 0)..DisplayPoint::new(5, 2)
-// ]
-// );
-// });
-
-// view.update(cx, |view, cx| {
-// view.move_line_down(&MoveLineDown, cx);
-// assert_eq!(
-// view.display_text(cx),
-// "ccc⋯eeee\nfffff\naa⋯bbb\nggggg\n⋯i\njjjjj"
-// );
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(2, 1)..DisplayPoint::new(2, 1),
-// DisplayPoint::new(3, 1)..DisplayPoint::new(3, 1),
-// DisplayPoint::new(3, 2)..DisplayPoint::new(4, 3),
-// DisplayPoint::new(5, 0)..DisplayPoint::new(5, 2)
-// ]
-// );
-// });
-
-// view.update(cx, |view, cx| {
-// view.move_line_up(&MoveLineUp, cx);
-// assert_eq!(
-// view.display_text(cx),
-// "ccc⋯eeee\naa⋯bbb\nggggg\n⋯i\njjjjj\nfffff"
-// );
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(1, 1)..DisplayPoint::new(1, 1),
-// DisplayPoint::new(2, 1)..DisplayPoint::new(2, 1),
-// DisplayPoint::new(2, 2)..DisplayPoint::new(3, 3),
-// DisplayPoint::new(4, 0)..DisplayPoint::new(4, 2)
-// ]
-// );
-// });
-// }
-
-// #[gpui::test]
-// fn test_move_line_up_down_with_blocks(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let editor = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple(&sample_text(10, 5, 'a'), cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-// editor.update(cx, |editor, cx| {
-// let snapshot = editor.buffer.read(cx).snapshot(cx);
-// editor.insert_blocks(
-// [BlockProperties {
-// style: BlockStyle::Fixed,
-// position: snapshot.anchor_after(Point::new(2, 0)),
-// disposition: BlockDisposition::Below,
-// height: 1,
-// render: Arc::new(|_| Empty::new().into_any()),
-// }],
-// Some(Autoscroll::fit()),
-// cx,
-// );
-// editor.change_selections(None, cx, |s| {
-// s.select_ranges([Point::new(2, 0)..Point::new(2, 0)])
-// });
-// editor.move_line_down(&MoveLineDown, cx);
-// });
-// }
-
-// #[gpui::test]
-// fn test_transpose(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// _ = cx.add_window(|cx| {
-// let mut editor = build_editor(MultiBuffer::build_simple("abc", cx), cx);
-
-// editor.change_selections(None, cx, |s| s.select_ranges([1..1]));
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "bac");
-// assert_eq!(editor.selections.ranges(cx), [2..2]);
-
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "bca");
-// assert_eq!(editor.selections.ranges(cx), [3..3]);
-
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "bac");
-// assert_eq!(editor.selections.ranges(cx), [3..3]);
-
-// editor
-// });
-
-// _ = cx.add_window(|cx| {
-// let mut editor = build_editor(MultiBuffer::build_simple("abc\nde", cx), cx);
-
-// editor.change_selections(None, cx, |s| s.select_ranges([3..3]));
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "acb\nde");
-// assert_eq!(editor.selections.ranges(cx), [3..3]);
-
-// editor.change_selections(None, cx, |s| s.select_ranges([4..4]));
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "acbd\ne");
-// assert_eq!(editor.selections.ranges(cx), [5..5]);
-
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "acbde\n");
-// assert_eq!(editor.selections.ranges(cx), [6..6]);
-
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "acbd\ne");
-// assert_eq!(editor.selections.ranges(cx), [6..6]);
-
-// editor
-// });
-
-// _ = cx.add_window(|cx| {
-// let mut editor = build_editor(MultiBuffer::build_simple("abc\nde", cx), cx);
-
-// editor.change_selections(None, cx, |s| s.select_ranges([1..1, 2..2, 4..4]));
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "bacd\ne");
-// assert_eq!(editor.selections.ranges(cx), [2..2, 3..3, 5..5]);
-
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "bcade\n");
-// assert_eq!(editor.selections.ranges(cx), [3..3, 4..4, 6..6]);
-
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "bcda\ne");
-// assert_eq!(editor.selections.ranges(cx), [4..4, 6..6]);
-
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "bcade\n");
-// assert_eq!(editor.selections.ranges(cx), [4..4, 6..6]);
-
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "bcaed\n");
-// assert_eq!(editor.selections.ranges(cx), [5..5, 6..6]);
-
-// editor
-// });
-
-// _ = cx.add_window(|cx| {
-// let mut editor = build_editor(MultiBuffer::build_simple("🍐🏀✋", cx), cx);
-
-// editor.change_selections(None, cx, |s| s.select_ranges([4..4]));
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "🏀🍐✋");
-// assert_eq!(editor.selections.ranges(cx), [8..8]);
-
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "🏀✋🍐");
-// assert_eq!(editor.selections.ranges(cx), [11..11]);
-
-// editor.transpose(&Default::default(), cx);
-// assert_eq!(editor.text(cx), "🏀🍐✋");
-// assert_eq!(editor.selections.ranges(cx), [11..11]);
-
-// editor
-// });
-// }
-
-// #[gpui::test]
-// async fn test_clipboard(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-
-// let mut cx = EditorTestContext::new(cx).await;
-
-// cx.set_state("«one✅ ˇ»two «three ˇ»four «five ˇ»six ");
-// cx.update_editor(|e, cx| e.cut(&Cut, cx));
-// cx.assert_editor_state("ˇtwo ˇfour ˇsix ");
-
-// // Paste with three cursors. Each cursor pastes one slice of the clipboard text.
-// cx.set_state("two ˇfour ˇsix ˇ");
-// cx.update_editor(|e, cx| e.paste(&Paste, cx));
-// cx.assert_editor_state("two one✅ ˇfour three ˇsix five ˇ");
-
-// // Paste again but with only two cursors. Since the number of cursors doesn't
-// // match the number of slices in the clipboard, the entire clipboard text
-// // is pasted at each cursor.
-// cx.set_state("ˇtwo one✅ four three six five ˇ");
-// cx.update_editor(|e, cx| {
-// e.handle_input("( ", cx);
-// e.paste(&Paste, cx);
-// e.handle_input(") ", cx);
-// });
-// cx.assert_editor_state(
-// &([
-// "( one✅ ",
-// "three ",
-// "five ) ˇtwo one✅ four three six five ( one✅ ",
-// "three ",
-// "five ) ˇ",
-// ]
-// .join("\n")),
-// );
-
-// // Cut with three selections, one of which is full-line.
-// cx.set_state(indoc! {"
-// 1«2ˇ»3
-// 4ˇ567
-// «8ˇ»9"});
-// cx.update_editor(|e, cx| e.cut(&Cut, cx));
-// cx.assert_editor_state(indoc! {"
-// 1ˇ3
-// ˇ9"});
-
-// // Paste with three selections, noticing how the copied selection that was full-line
-// // gets inserted before the second cursor.
-// cx.set_state(indoc! {"
-// 1ˇ3
-// 9ˇ
-// «oˇ»ne"});
-// cx.update_editor(|e, cx| e.paste(&Paste, cx));
-// cx.assert_editor_state(indoc! {"
-// 12ˇ3
-// 4567
-// 9ˇ
-// 8ˇne"});
-
-// // Copy with a single cursor only, which writes the whole line into the clipboard.
-// cx.set_state(indoc! {"
-// The quick brown
-// fox juˇmps over
-// the lazy dog"});
-// cx.update_editor(|e, cx| e.copy(&Copy, cx));
-// cx.cx.assert_clipboard_content(Some("fox jumps over\n"));
-
-// // Paste with three selections, noticing how the copied full-line selection is inserted
-// // before the empty selections but replaces the selection that is non-empty.
-// cx.set_state(indoc! {"
-// Tˇhe quick brown
-// «foˇ»x jumps over
-// tˇhe lazy dog"});
-// cx.update_editor(|e, cx| e.paste(&Paste, cx));
-// cx.assert_editor_state(indoc! {"
-// fox jumps over
-// Tˇhe quick brown
-// fox jumps over
-// ˇx jumps over
-// fox jumps over
-// tˇhe lazy dog"});
-// }
-
-// #[gpui::test]
-// async fn test_paste_multiline(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-
-// let mut cx = EditorTestContext::new(cx).await;
-// let language = Arc::new(Language::new(
-// LanguageConfig::default(),
-// Some(tree_sitter_rust::language()),
-// ));
-// cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
-
-// // Cut an indented block, without the leading whitespace.
-// cx.set_state(indoc! {"
-// const a: B = (
-// c(),
-// «d(
-// e,
-// f
-// )ˇ»
-// );
-// "});
-// cx.update_editor(|e, cx| e.cut(&Cut, cx));
-// cx.assert_editor_state(indoc! {"
-// const a: B = (
-// c(),
-// ˇ
-// );
-// "});
-
-// // Paste it at the same position.
-// cx.update_editor(|e, cx| e.paste(&Paste, cx));
-// cx.assert_editor_state(indoc! {"
-// const a: B = (
-// c(),
-// d(
-// e,
-// f
-// )ˇ
-// );
-// "});
-
-// // Paste it at a line with a lower indent level.
-// cx.set_state(indoc! {"
-// ˇ
-// const a: B = (
-// c(),
-// );
-// "});
-// cx.update_editor(|e, cx| e.paste(&Paste, cx));
-// cx.assert_editor_state(indoc! {"
-// d(
-// e,
-// f
-// )ˇ
-// const a: B = (
-// c(),
-// );
-// "});
-
-// // Cut an indented block, with the leading whitespace.
-// cx.set_state(indoc! {"
-// const a: B = (
-// c(),
-// « d(
-// e,
-// f
-// )
-// ˇ»);
-// "});
-// cx.update_editor(|e, cx| e.cut(&Cut, cx));
-// cx.assert_editor_state(indoc! {"
-// const a: B = (
-// c(),
-// ˇ);
-// "});
-
-// // Paste it at the same position.
-// cx.update_editor(|e, cx| e.paste(&Paste, cx));
-// cx.assert_editor_state(indoc! {"
-// const a: B = (
-// c(),
-// d(
-// e,
-// f
-// )
-// ˇ);
-// "});
-
-// // Paste it at a line with a higher indent level.
-// cx.set_state(indoc! {"
-// const a: B = (
-// c(),
-// d(
-// e,
-// fˇ
-// )
-// );
-// "});
-// cx.update_editor(|e, cx| e.paste(&Paste, cx));
-// cx.assert_editor_state(indoc! {"
-// const a: B = (
-// c(),
-// d(
-// e,
-// f d(
-// e,
-// f
-// )
-// ˇ
-// )
-// );
-// "});
-// }
-
-// #[gpui::test]
-// fn test_select_all(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("abc\nde\nfgh", cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-// view.update(cx, |view, cx| {
-// view.select_all(&SelectAll, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// &[DisplayPoint::new(0, 0)..DisplayPoint::new(2, 3)]
-// );
-// });
-// }
-
-// #[gpui::test]
-// fn test_select_line(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
-
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple(&sample_text(6, 5, 'a'), cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// DisplayPoint::new(0, 0)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
-// DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0),
-// DisplayPoint::new(4, 2)..DisplayPoint::new(4, 2),
-// ])
-// });
-// view.select_line(&SelectLine, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(0, 0)..DisplayPoint::new(2, 0),
-// DisplayPoint::new(4, 0)..DisplayPoint::new(5, 0),
-// ]
-// );
-// });
-
-// view.update(cx, |view, cx| {
-// view.select_line(&SelectLine, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(0, 0)..DisplayPoint::new(3, 0),
-// DisplayPoint::new(4, 0)..DisplayPoint::new(5, 5),
-// ]
-// );
-// });
+ cx.add_window(|cx| {
+ let mut editor = build_editor(multibuffer, cx);
+
+ assert_eq!(
+ editor.text(cx),
+ indoc! {"
+ a = 1
+ b = 2
+
+ const c: usize = 3;
+ "}
+ );
+
+ select_ranges(
+ &mut editor,
+ indoc! {"
+ «aˇ» = 1
+ b = 2
+
+ «const c:ˇ» usize = 3;
+ "},
+ cx,
+ );
+
+ editor.tab(&Tab, cx);
+ assert_text_with_selections(
+ &mut editor,
+ indoc! {"
+ «aˇ» = 1
+ b = 2
+
+ «const c:ˇ» usize = 3;
+ "},
+ cx,
+ );
+ editor.tab_prev(&TabPrev, cx);
+ assert_text_with_selections(
+ &mut editor,
+ indoc! {"
+ «aˇ» = 1
+ b = 2
+
+ «const c:ˇ» usize = 3;
+ "},
+ cx,
+ );
+
+ editor
+ });
+}
-// view.update(cx, |view, cx| {
-// view.select_line(&SelectLine, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![DisplayPoint::new(0, 0)..DisplayPoint::new(5, 5)]
-// );
-// });
-// }
+#[gpui::test]
+async fn test_backspace(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut cx = EditorTestContext::new(cx).await;
+
+ // Basic backspace
+ cx.set_state(indoc! {"
+ onˇe two three
+ fou«rˇ» five six
+ seven «ˇeight nine
+ »ten
+ "});
+ cx.update_editor(|e, cx| e.backspace(&Backspace, cx));
+ cx.assert_editor_state(indoc! {"
+ oˇe two three
+ fouˇ five six
+ seven ˇten
+ "});
+
+ // Test backspace inside and around indents
+ cx.set_state(indoc! {"
+ zero
+ ˇone
+ ˇtwo
+ ˇ ˇ ˇ three
+ ˇ ˇ four
+ "});
+ cx.update_editor(|e, cx| e.backspace(&Backspace, cx));
+ cx.assert_editor_state(indoc! {"
+ zero
+ ˇone
+ ˇtwo
+ ˇ threeˇ four
+ "});
+
+ // Test backspace with line_mode set to true
+ cx.update_editor(|e, _| e.selections.line_mode = true);
+ cx.set_state(indoc! {"
+ The ˇquick ˇbrown
+ fox jumps over
+ the lazy dog
+ ˇThe qu«ick bˇ»rown"});
+ cx.update_editor(|e, cx| e.backspace(&Backspace, cx));
+ cx.assert_editor_state(indoc! {"
+ ˇfox jumps over
+ the lazy dogˇ"});
+}
-// #[gpui::test]
-// fn test_split_selection_into_lines(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
+#[gpui::test]
+async fn test_delete(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut cx = EditorTestContext::new(cx).await;
+ cx.set_state(indoc! {"
+ onˇe two three
+ fou«rˇ» five six
+ seven «ˇeight nine
+ »ten
+ "});
+ cx.update_editor(|e, cx| e.delete(&Delete, cx));
+ cx.assert_editor_state(indoc! {"
+ onˇ two three
+ fouˇ five six
+ seven ˇten
+ "});
+
+ // Test backspace with line_mode set to true
+ cx.update_editor(|e, _| e.selections.line_mode = true);
+ cx.set_state(indoc! {"
+ The ˇquick ˇbrown
+ fox «ˇjum»ps over
+ the lazy dog
+ ˇThe qu«ick bˇ»rown"});
+ cx.update_editor(|e, cx| e.backspace(&Backspace, cx));
+ cx.assert_editor_state("ˇthe lazy dogˇ");
+}
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple(&sample_text(9, 5, 'a'), cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-// view.update(cx, |view, cx| {
-// view.fold_ranges(
-// vec![
-// Point::new(0, 2)..Point::new(1, 2),
-// Point::new(2, 3)..Point::new(4, 1),
-// Point::new(7, 0)..Point::new(8, 4),
-// ],
-// true,
-// cx,
-// );
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// DisplayPoint::new(0, 0)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
-// DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0),
-// DisplayPoint::new(4, 4)..DisplayPoint::new(4, 4),
-// ])
-// });
-// assert_eq!(view.display_text(cx), "aa⋯bbb\nccc⋯eeee\nfffff\nggggg\n⋯i");
-// });
+#[gpui::test]
+fn test_delete_line(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// view.update(cx, |view, cx| {
-// view.split_selection_into_lines(&SplitSelectionIntoLines, cx);
-// assert_eq!(
-// view.display_text(cx),
-// "aaaaa\nbbbbb\nccc⋯eeee\nfffff\nggggg\n⋯i"
-// );
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// [
-// DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
-// DisplayPoint::new(2, 0)..DisplayPoint::new(2, 0),
-// DisplayPoint::new(5, 4)..DisplayPoint::new(5, 4)
-// ]
-// );
-// });
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("abc\ndef\nghi\n", cx);
+ build_editor(buffer, cx)
+ });
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
+ DisplayPoint::new(1, 0)..DisplayPoint::new(1, 1),
+ DisplayPoint::new(3, 0)..DisplayPoint::new(3, 0),
+ ])
+ });
+ view.delete_line(&DeleteLine, cx);
+ assert_eq!(view.display_text(cx), "ghi");
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ vec![
+ DisplayPoint::new(0, 0)..DisplayPoint::new(0, 0),
+ DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1)
+ ]
+ );
+ });
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([DisplayPoint::new(5, 0)..DisplayPoint::new(0, 1)])
-// });
-// view.split_selection_into_lines(&SplitSelectionIntoLines, cx);
-// assert_eq!(
-// view.display_text(cx),
-// "aaaaa\nbbbbb\nccccc\nddddd\neeeee\nfffff\nggggg\nhhhhh\niiiii"
-// );
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// [
-// DisplayPoint::new(0, 5)..DisplayPoint::new(0, 5),
-// DisplayPoint::new(1, 5)..DisplayPoint::new(1, 5),
-// DisplayPoint::new(2, 5)..DisplayPoint::new(2, 5),
-// DisplayPoint::new(3, 5)..DisplayPoint::new(3, 5),
-// DisplayPoint::new(4, 5)..DisplayPoint::new(4, 5),
-// DisplayPoint::new(5, 5)..DisplayPoint::new(5, 5),
-// DisplayPoint::new(6, 5)..DisplayPoint::new(6, 5),
-// DisplayPoint::new(7, 0)..DisplayPoint::new(7, 0)
-// ]
-// );
-// });
-// }
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("abc\ndef\nghi\n", cx);
+ build_editor(buffer, cx)
+ });
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([DisplayPoint::new(2, 0)..DisplayPoint::new(0, 1)])
+ });
+ view.delete_line(&DeleteLine, cx);
+ assert_eq!(view.display_text(cx), "ghi\n");
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ vec![DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1)]
+ );
+ });
+}
+//todo!(select_anchor_ranges)
// #[gpui::test]
-// fn test_add_selection_above_below(cx: &mut TestAppContext) {
+// fn test_join_lines_with_single_selection(cx: &mut TestAppContext) {
// init_test(cx, |_| {});
-// let view = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple("abc\ndefghi\n\njk\nlmno\n", cx);
-// build_editor(buffer, cx)
-// })
-// .root(cx);
-
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([DisplayPoint::new(1, 3)..DisplayPoint::new(1, 3)])
-// });
-// });
-// view.update(cx, |view, cx| {
-// view.add_selection_above(&AddSelectionAbove, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(0, 3)..DisplayPoint::new(0, 3),
-// DisplayPoint::new(1, 3)..DisplayPoint::new(1, 3)
-// ]
-// );
-// });
-
-// view.update(cx, |view, cx| {
-// view.add_selection_above(&AddSelectionAbove, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(0, 3)..DisplayPoint::new(0, 3),
-// DisplayPoint::new(1, 3)..DisplayPoint::new(1, 3)
-// ]
-// );
-// });
-
-// view.update(cx, |view, cx| {
-// view.add_selection_below(&AddSelectionBelow, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![DisplayPoint::new(1, 3)..DisplayPoint::new(1, 3)]
-// );
-
-// view.undo_selection(&UndoSelection, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(0, 3)..DisplayPoint::new(0, 3),
-// DisplayPoint::new(1, 3)..DisplayPoint::new(1, 3)
-// ]
-// );
-
-// view.redo_selection(&RedoSelection, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![DisplayPoint::new(1, 3)..DisplayPoint::new(1, 3)]
-// );
-// });
-
-// view.update(cx, |view, cx| {
-// view.add_selection_below(&AddSelectionBelow, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(1, 3)..DisplayPoint::new(1, 3),
-// DisplayPoint::new(4, 3)..DisplayPoint::new(4, 3)
-// ]
-// );
-// });
-
-// view.update(cx, |view, cx| {
-// view.add_selection_below(&AddSelectionBelow, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(1, 3)..DisplayPoint::new(1, 3),
-// DisplayPoint::new(4, 3)..DisplayPoint::new(4, 3)
-// ]
-// );
-// });
-
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([DisplayPoint::new(1, 4)..DisplayPoint::new(1, 3)])
-// });
-// });
-// view.update(cx, |view, cx| {
-// view.add_selection_below(&AddSelectionBelow, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(1, 4)..DisplayPoint::new(1, 3),
-// DisplayPoint::new(4, 4)..DisplayPoint::new(4, 3)
-// ]
-// );
-// });
-
-// view.update(cx, |view, cx| {
-// view.add_selection_below(&AddSelectionBelow, cx);
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(1, 4)..DisplayPoint::new(1, 3),
-// DisplayPoint::new(4, 4)..DisplayPoint::new(4, 3)
-// ]
-// );
-// });
+// cx.add_window(|cx| {
+// let buffer = MultiBuffer::build_simple("aaa\nbbb\nccc\nddd\n\n", cx);
+// let mut editor = build_editor(buffer.clone(), cx);
+// let buffer = buffer.read(cx).as_singleton().unwrap();
-// view.update(cx, |view, cx| {
-// view.add_selection_above(&AddSelectionAbove, cx);
// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![DisplayPoint::new(1, 4)..DisplayPoint::new(1, 3)]
+// editor.selections.ranges::<Point>(cx),
+// &[Point::new(0, 0)..Point::new(0, 0)]
// );
-// });
-// view.update(cx, |view, cx| {
-// view.add_selection_above(&AddSelectionAbove, cx);
+// // When on single line, replace newline at end by space
+// editor.join_lines(&JoinLines, cx);
+// assert_eq!(buffer.read(cx).text(), "aaa bbb\nccc\nddd\n\n");
// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![DisplayPoint::new(1, 4)..DisplayPoint::new(1, 3)]
+// editor.selections.ranges::<Point>(cx),
+// &[Point::new(0, 3)..Point::new(0, 3)]
// );
-// });
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([DisplayPoint::new(0, 1)..DisplayPoint::new(1, 4)])
+// // When multiple lines are selected, remove newlines that are spanned by the selection
+// editor.change_selections(None, cx, |s| {
+// s.select_ranges([Point::new(0, 5)..Point::new(2, 2)])
// });
-// view.add_selection_below(&AddSelectionBelow, cx);
+// editor.join_lines(&JoinLines, cx);
+// assert_eq!(buffer.read(cx).text(), "aaa bbb ccc ddd\n\n");
// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(0, 1)..DisplayPoint::new(0, 3),
-// DisplayPoint::new(1, 1)..DisplayPoint::new(1, 4),
-// DisplayPoint::new(3, 1)..DisplayPoint::new(3, 2),
-// ]
+// editor.selections.ranges::<Point>(cx),
+// &[Point::new(0, 11)..Point::new(0, 11)]
// );
-// });
-// view.update(cx, |view, cx| {
-// view.add_selection_below(&AddSelectionBelow, cx);
+// // Undo should be transactional
+// editor.undo(&Undo, cx);
+// assert_eq!(buffer.read(cx).text(), "aaa bbb\nccc\nddd\n\n");
// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(0, 1)..DisplayPoint::new(0, 3),
-// DisplayPoint::new(1, 1)..DisplayPoint::new(1, 4),
-// DisplayPoint::new(3, 1)..DisplayPoint::new(3, 2),
-// DisplayPoint::new(4, 1)..DisplayPoint::new(4, 4),
-// ]
+// editor.selections.ranges::<Point>(cx),
+// &[Point::new(0, 5)..Point::new(2, 2)]
// );
-// });
-// view.update(cx, |view, cx| {
-// view.add_selection_above(&AddSelectionAbove, cx);
+// // When joining an empty line don't insert a space
+// editor.change_selections(None, cx, |s| {
+// s.select_ranges([Point::new(2, 1)..Point::new(2, 2)])
+// });
+// editor.join_lines(&JoinLines, cx);
+// assert_eq!(buffer.read(cx).text(), "aaa bbb\nccc\nddd\n");
// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(0, 1)..DisplayPoint::new(0, 3),
-// DisplayPoint::new(1, 1)..DisplayPoint::new(1, 4),
-// DisplayPoint::new(3, 1)..DisplayPoint::new(3, 2),
-// ]
+// editor.selections.ranges::<Point>(cx),
+// [Point::new(2, 3)..Point::new(2, 3)]
// );
-// });
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([DisplayPoint::new(4, 3)..DisplayPoint::new(1, 1)])
-// });
-// });
-// view.update(cx, |view, cx| {
-// view.add_selection_above(&AddSelectionAbove, cx);
+// // We can remove trailing newlines
+// editor.join_lines(&JoinLines, cx);
+// assert_eq!(buffer.read(cx).text(), "aaa bbb\nccc\nddd");
// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(0, 3)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(1, 3)..DisplayPoint::new(1, 1),
-// DisplayPoint::new(3, 2)..DisplayPoint::new(3, 1),
-// DisplayPoint::new(4, 3)..DisplayPoint::new(4, 1),
-// ]
+// editor.selections.ranges::<Point>(cx),
+// [Point::new(2, 3)..Point::new(2, 3)]
// );
-// });
-// view.update(cx, |view, cx| {
-// view.add_selection_below(&AddSelectionBelow, cx);
+// // We don't blow up on the last line
+// editor.join_lines(&JoinLines, cx);
+// assert_eq!(buffer.read(cx).text(), "aaa bbb\nccc\nddd");
// assert_eq!(
-// view.selections.display_ranges(cx),
-// vec![
-// DisplayPoint::new(1, 3)..DisplayPoint::new(1, 1),
-// DisplayPoint::new(3, 2)..DisplayPoint::new(3, 1),
-// DisplayPoint::new(4, 3)..DisplayPoint::new(4, 1),
-// ]
+// editor.selections.ranges::<Point>(cx),
+// [Point::new(2, 3)..Point::new(2, 3)]
// );
-// });
-// }
-// #[gpui::test]
-// async fn test_select_next(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-
-// let mut cx = EditorTestContext::new(cx).await;
-// cx.set_state("abc\nˇabc abc\ndefabc\nabc");
-
-// cx.update_editor(|e, cx| e.select_next(&SelectNext::default(), cx))
-// .unwrap();
-// cx.assert_editor_state("abc\n«abcˇ» abc\ndefabc\nabc");
-
-// cx.update_editor(|e, cx| e.select_next(&SelectNext::default(), cx))
-// .unwrap();
-// cx.assert_editor_state("abc\n«abcˇ» «abcˇ»\ndefabc\nabc");
-
-// cx.update_editor(|view, cx| view.undo_selection(&UndoSelection, cx));
-// cx.assert_editor_state("abc\n«abcˇ» abc\ndefabc\nabc");
-
-// cx.update_editor(|view, cx| view.redo_selection(&RedoSelection, cx));
-// cx.assert_editor_state("abc\n«abcˇ» «abcˇ»\ndefabc\nabc");
-
-// cx.update_editor(|e, cx| e.select_next(&SelectNext::default(), cx))
-// .unwrap();
-// cx.assert_editor_state("abc\n«abcˇ» «abcˇ»\ndefabc\n«abcˇ»");
-
-// cx.update_editor(|e, cx| e.select_next(&SelectNext::default(), cx))
-// .unwrap();
-// cx.assert_editor_state("«abcˇ»\n«abcˇ» «abcˇ»\ndefabc\n«abcˇ»");
-// }
-
-// #[gpui::test]
-// async fn test_select_previous(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-// {
-// // `Select previous` without a selection (selects wordwise)
-// let mut cx = EditorTestContext::new(cx).await;
-// cx.set_state("abc\nˇabc abc\ndefabc\nabc");
-
-// cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
-// .unwrap();
-// cx.assert_editor_state("abc\n«abcˇ» abc\ndefabc\nabc");
-
-// cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
-// .unwrap();
-// cx.assert_editor_state("«abcˇ»\n«abcˇ» abc\ndefabc\nabc");
-
-// cx.update_editor(|view, cx| view.undo_selection(&UndoSelection, cx));
-// cx.assert_editor_state("abc\n«abcˇ» abc\ndefabc\nabc");
-
-// cx.update_editor(|view, cx| view.redo_selection(&RedoSelection, cx));
-// cx.assert_editor_state("«abcˇ»\n«abcˇ» abc\ndefabc\nabc");
-
-// cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
-// .unwrap();
-// cx.assert_editor_state("«abcˇ»\n«abcˇ» abc\ndefabc\n«abcˇ»");
-
-// cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
-// .unwrap();
-// cx.assert_editor_state("«abcˇ»\n«abcˇ» «abcˇ»\ndefabc\n«abcˇ»");
-// }
-// {
-// // `Select previous` with a selection
-// let mut cx = EditorTestContext::new(cx).await;
-// cx.set_state("abc\n«ˇabc» abc\ndefabc\nabc");
-
-// cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
-// .unwrap();
-// cx.assert_editor_state("«abcˇ»\n«ˇabc» abc\ndefabc\nabc");
-
-// cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
-// .unwrap();
-// cx.assert_editor_state("«abcˇ»\n«ˇabc» abc\ndefabc\n«abcˇ»");
-
-// cx.update_editor(|view, cx| view.undo_selection(&UndoSelection, cx));
-// cx.assert_editor_state("«abcˇ»\n«ˇabc» abc\ndefabc\nabc");
-
-// cx.update_editor(|view, cx| view.redo_selection(&RedoSelection, cx));
-// cx.assert_editor_state("«abcˇ»\n«ˇabc» abc\ndefabc\n«abcˇ»");
-
-// cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
-// .unwrap();
-// cx.assert_editor_state("«abcˇ»\n«ˇabc» abc\ndef«abcˇ»\n«abcˇ»");
-
-// cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
-// .unwrap();
-// cx.assert_editor_state("«abcˇ»\n«ˇabc» «abcˇ»\ndef«abcˇ»\n«abcˇ»");
-// }
-// }
-
-// #[gpui::test]
-// async fn test_select_larger_smaller_syntax_node(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-
-// let language = Arc::new(Language::new(
-// LanguageConfig::default(),
-// Some(tree_sitter_rust::language()),
-// ));
-
-// let text = r#"
-// use mod1::mod2::{mod3, mod4};
-
-// fn fn_1(param1: bool, param2: &str) {
-// let var1 = "text";
-// }
-// "#
-// .unindent();
-
-// let buffer =
-// cx.add_model(|cx| Buffer::new(0, cx.model_id() as u64, text).with_language(language, cx));
-// let buffer = cx.add_model(|cx| MultiBuffer::singleton(buffer, cx));
-// let view = cx.add_window(|cx| build_editor(buffer, cx)).root(cx);
-// view.condition(cx, |view, cx| !view.buffer.read(cx).is_parsing(cx))
-// .await;
-
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// DisplayPoint::new(0, 25)..DisplayPoint::new(0, 25),
-// DisplayPoint::new(2, 24)..DisplayPoint::new(2, 12),
-// DisplayPoint::new(3, 18)..DisplayPoint::new(3, 18),
-// ]);
+// // reset to test indentation
+// editor.buffer.update(cx, |buffer, cx| {
+// buffer.edit(
+// [
+// (Point::new(1, 0)..Point::new(1, 2), " "),
+// (Point::new(2, 0)..Point::new(2, 3), " \n\td"),
+// ],
+// None,
+// cx,
+// )
// });
-// view.select_larger_syntax_node(&SelectLargerSyntaxNode, cx);
-// });
-// assert_eq!(
-// view.update(cx, |view, cx| { view.selections.display_ranges(cx) }),
-// &[
-// DisplayPoint::new(0, 23)..DisplayPoint::new(0, 27),
-// DisplayPoint::new(2, 35)..DisplayPoint::new(2, 7),
-// DisplayPoint::new(3, 15)..DisplayPoint::new(3, 21),
-// ]
-// );
-
-// view.update(cx, |view, cx| {
-// view.select_larger_syntax_node(&SelectLargerSyntaxNode, cx);
-// });
-// assert_eq!(
-// view.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// &[
-// DisplayPoint::new(0, 16)..DisplayPoint::new(0, 28),
-// DisplayPoint::new(4, 1)..DisplayPoint::new(2, 0),
-// ]
-// );
-
-// view.update(cx, |view, cx| {
-// view.select_larger_syntax_node(&SelectLargerSyntaxNode, cx);
-// });
-// assert_eq!(
-// view.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// &[DisplayPoint::new(5, 0)..DisplayPoint::new(0, 0)]
-// );
-
-// // Trying to expand the selected syntax node one more time has no effect.
-// view.update(cx, |view, cx| {
-// view.select_larger_syntax_node(&SelectLargerSyntaxNode, cx);
-// });
-// assert_eq!(
-// view.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// &[DisplayPoint::new(5, 0)..DisplayPoint::new(0, 0)]
-// );
-
-// view.update(cx, |view, cx| {
-// view.select_smaller_syntax_node(&SelectSmallerSyntaxNode, cx);
-// });
-// assert_eq!(
-// view.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// &[
-// DisplayPoint::new(0, 16)..DisplayPoint::new(0, 28),
-// DisplayPoint::new(4, 1)..DisplayPoint::new(2, 0),
-// ]
-// );
-// view.update(cx, |view, cx| {
-// view.select_smaller_syntax_node(&SelectSmallerSyntaxNode, cx);
-// });
-// assert_eq!(
-// view.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// &[
-// DisplayPoint::new(0, 23)..DisplayPoint::new(0, 27),
-// DisplayPoint::new(2, 35)..DisplayPoint::new(2, 7),
-// DisplayPoint::new(3, 15)..DisplayPoint::new(3, 21),
-// ]
-// );
+// // We remove any leading spaces
+// assert_eq!(buffer.read(cx).text(), "aaa bbb\n c\n \n\td");
+// editor.change_selections(None, cx, |s| {
+// s.select_ranges([Point::new(0, 1)..Point::new(0, 1)])
+// });
+// editor.join_lines(&JoinLines, cx);
+// assert_eq!(buffer.read(cx).text(), "aaa bbb c\n \n\td");
-// view.update(cx, |view, cx| {
-// view.select_smaller_syntax_node(&SelectSmallerSyntaxNode, cx);
-// });
-// assert_eq!(
-// view.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// &[
-// DisplayPoint::new(0, 25)..DisplayPoint::new(0, 25),
-// DisplayPoint::new(2, 24)..DisplayPoint::new(2, 12),
-// DisplayPoint::new(3, 18)..DisplayPoint::new(3, 18),
-// ]
-// );
+// // We don't insert a space for a line containing only spaces
+// editor.join_lines(&JoinLines, cx);
+// assert_eq!(buffer.read(cx).text(), "aaa bbb c\n\td");
-// // Trying to shrink the selected syntax node one more time has no effect.
-// view.update(cx, |view, cx| {
-// view.select_smaller_syntax_node(&SelectSmallerSyntaxNode, cx);
-// });
-// assert_eq!(
-// view.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// &[
-// DisplayPoint::new(0, 25)..DisplayPoint::new(0, 25),
-// DisplayPoint::new(2, 24)..DisplayPoint::new(2, 12),
-// DisplayPoint::new(3, 18)..DisplayPoint::new(3, 18),
-// ]
-// );
+// // We ignore any leading tabs
+// editor.join_lines(&JoinLines, cx);
+// assert_eq!(buffer.read(cx).text(), "aaa bbb c d");
-// // Ensure that we keep expanding the selection if the larger selection starts or ends within
-// // a fold.
-// view.update(cx, |view, cx| {
-// view.fold_ranges(
-// vec![
-// Point::new(0, 21)..Point::new(0, 24),
-// Point::new(3, 20)..Point::new(3, 22),
-// ],
-// true,
-// cx,
-// );
-// view.select_larger_syntax_node(&SelectLargerSyntaxNode, cx);
+// editor
// });
-// assert_eq!(
-// view.update(cx, |view, cx| view.selections.display_ranges(cx)),
-// &[
-// DisplayPoint::new(0, 16)..DisplayPoint::new(0, 28),
-// DisplayPoint::new(2, 35)..DisplayPoint::new(2, 7),
-// DisplayPoint::new(3, 4)..DisplayPoint::new(3, 23),
-// ]
-// );
// }
// #[gpui::test]
-// async fn test_autoindent_selections(cx: &mut gpui::TestAppContext) {
+// fn test_join_lines_with_multi_selection(cx: &mut TestAppContext) {
// init_test(cx, |_| {});
-// let language = Arc::new(
-// Language::new(
-// LanguageConfig {
-// brackets: BracketPairConfig {
-// pairs: vec![
-// BracketPair {
-// start: "{".to_string(),
-// end: "}".to_string(),
-// close: false,
-// newline: true,
-// },
-// BracketPair {
-// start: "(".to_string(),
-// end: ")".to_string(),
-// close: false,
-// newline: true,
-// },
-// ],
-// ..Default::default()
-// },
-// ..Default::default()
-// },
-// Some(tree_sitter_rust::language()),
-// )
-// .with_indents_query(
-// r#"
-// (_ "(" ")" @end) @indent
-// (_ "{" "}" @end) @indent
-// "#,
-// )
-// .unwrap(),
-// );
+// cx.add_window(|cx| {
+// let buffer = MultiBuffer::build_simple("aaa\nbbb\nccc\nddd\n\n", cx);
+// let mut editor = build_editor(buffer.clone(), cx);
+// let buffer = buffer.read(cx).as_singleton().unwrap();
-// let text = "fn a() {}";
+// editor.change_selections(None, cx, |s| {
+// s.select_ranges([
+// Point::new(0, 2)..Point::new(1, 1),
+// Point::new(1, 2)..Point::new(1, 2),
+// Point::new(3, 1)..Point::new(3, 2),
+// ])
+// });
-// let buffer =
-// cx.add_model(|cx| Buffer::new(0, cx.model_id() as u64, text).with_language(language, cx));
-// let buffer = cx.add_model(|cx| MultiBuffer::singleton(buffer, cx));
-// let editor = cx.add_window(|cx| build_editor(buffer, cx)).root(cx);
-// editor
-// .condition(cx, |editor, cx| !editor.buffer.read(cx).is_parsing(cx))
-// .await;
+// editor.join_lines(&JoinLines, cx);
+// assert_eq!(buffer.read(cx).text(), "aaa bbb ccc\nddd\n");
-// editor.update(cx, |editor, cx| {
-// editor.change_selections(None, cx, |s| s.select_ranges([5..5, 8..8, 9..9]));
-// editor.newline(&Newline, cx);
-// assert_eq!(editor.text(cx), "fn a(\n \n) {\n \n}\n");
// assert_eq!(
-// editor.selections.ranges(cx),
-// &[
-// Point::new(1, 4)..Point::new(1, 4),
-// Point::new(3, 4)..Point::new(3, 4),
-// Point::new(5, 0)..Point::new(5, 0)
+// editor.selections.ranges::<Point>(cx),
+// [
+// Point::new(0, 7)..Point::new(0, 7),
+// Point::new(1, 3)..Point::new(1, 3)
// ]
// );
+// editor
// });
// }
-// #[gpui::test]
-// async fn test_autoclose_pairs(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
+#[gpui::test]
+async fn test_manipulate_lines_with_single_selection(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut cx = EditorTestContext::new(cx).await;
+
+ // Test sort_lines_case_insensitive()
+ cx.set_state(indoc! {"
+ «z
+ y
+ x
+ Z
+ Y
+ Xˇ»
+ "});
+ cx.update_editor(|e, cx| e.sort_lines_case_insensitive(&SortLinesCaseInsensitive, cx));
+ cx.assert_editor_state(indoc! {"
+ «x
+ X
+ y
+ Y
+ z
+ Zˇ»
+ "});
+
+ // Test reverse_lines()
+ cx.set_state(indoc! {"
+ «5
+ 4
+ 3
+ 2
+ 1ˇ»
+ "});
+ cx.update_editor(|e, cx| e.reverse_lines(&ReverseLines, cx));
+ cx.assert_editor_state(indoc! {"
+ «1
+ 2
+ 3
+ 4
+ 5ˇ»
+ "});
+
+ // Skip testing shuffle_line()
+
+ // From here on out, test more complex cases of manipulate_lines() with a single driver method: sort_lines_case_sensitive()
+ // Since all methods calling manipulate_lines() are doing the exact same general thing (reordering lines)
+
+ // Don't manipulate when cursor is on single line, but expand the selection
+ cx.set_state(indoc! {"
+ ddˇdd
+ ccc
+ bb
+ a
+ "});
+ cx.update_editor(|e, cx| e.sort_lines_case_sensitive(&SortLinesCaseSensitive, cx));
+ cx.assert_editor_state(indoc! {"
+ «ddddˇ»
+ ccc
+ bb
+ a
+ "});
+
+ // Basic manipulate case
+ // Start selection moves to column 0
+ // End of selection shrinks to fit shorter line
+ cx.set_state(indoc! {"
+ dd«d
+ ccc
+ bb
+ aaaaaˇ»
+ "});
+ cx.update_editor(|e, cx| e.sort_lines_case_sensitive(&SortLinesCaseSensitive, cx));
+ cx.assert_editor_state(indoc! {"
+ «aaaaa
+ bb
+ ccc
+ dddˇ»
+ "});
+
+ // Manipulate case with newlines
+ cx.set_state(indoc! {"
+ dd«d
+ ccc
+
+ bb
+ aaaaa
+
+ ˇ»
+ "});
+ cx.update_editor(|e, cx| e.sort_lines_case_sensitive(&SortLinesCaseSensitive, cx));
+ cx.assert_editor_state(indoc! {"
+ «
+
+ aaaaa
+ bb
+ ccc
+ dddˇ»
+
+ "});
+}
-// let mut cx = EditorTestContext::new(cx).await;
+#[gpui::test]
+async fn test_manipulate_lines_with_multi_selection(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut cx = EditorTestContext::new(cx).await;
+
+ // Manipulate with multiple selections on a single line
+ cx.set_state(indoc! {"
+ dd«dd
+ cˇ»c«c
+ bb
+ aaaˇ»aa
+ "});
+ cx.update_editor(|e, cx| e.sort_lines_case_sensitive(&SortLinesCaseSensitive, cx));
+ cx.assert_editor_state(indoc! {"
+ «aaaaa
+ bb
+ ccc
+ ddddˇ»
+ "});
+
+ // Manipulate with multiple disjoin selections
+ cx.set_state(indoc! {"
+ 5«
+ 4
+ 3
+ 2
+ 1ˇ»
+
+ dd«dd
+ ccc
+ bb
+ aaaˇ»aa
+ "});
+ cx.update_editor(|e, cx| e.sort_lines_case_sensitive(&SortLinesCaseSensitive, cx));
+ cx.assert_editor_state(indoc! {"
+ «1
+ 2
+ 3
+ 4
+ 5ˇ»
+
+ «aaaaa
+ bb
+ ccc
+ ddddˇ»
+ "});
+}
-// let language = Arc::new(Language::new(
-// LanguageConfig {
-// brackets: BracketPairConfig {
-// pairs: vec![
-// BracketPair {
-// start: "{".to_string(),
-// end: "}".to_string(),
-// close: true,
-// newline: true,
-// },
-// BracketPair {
-// start: "(".to_string(),
-// end: ")".to_string(),
-// close: true,
-// newline: true,
-// },
-// BracketPair {
-// start: "/*".to_string(),
-// end: " */".to_string(),
-// close: true,
-// newline: true,
-// },
-// BracketPair {
-// start: "[".to_string(),
-// end: "]".to_string(),
-// close: false,
-// newline: true,
-// },
-// BracketPair {
-// start: "\"".to_string(),
-// end: "\"".to_string(),
-// close: true,
-// newline: false,
-// },
-// ],
-// ..Default::default()
-// },
-// autoclose_before: "})]".to_string(),
-// ..Default::default()
-// },
-// Some(tree_sitter_rust::language()),
-// ));
+#[gpui::test]
+async fn test_manipulate_text(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut cx = EditorTestContext::new(cx).await;
+
+ // Test convert_to_upper_case()
+ cx.set_state(indoc! {"
+ «hello worldˇ»
+ "});
+ cx.update_editor(|e, cx| e.convert_to_upper_case(&ConvertToUpperCase, cx));
+ cx.assert_editor_state(indoc! {"
+ «HELLO WORLDˇ»
+ "});
+
+ // Test convert_to_lower_case()
+ cx.set_state(indoc! {"
+ «HELLO WORLDˇ»
+ "});
+ cx.update_editor(|e, cx| e.convert_to_lower_case(&ConvertToLowerCase, cx));
+ cx.assert_editor_state(indoc! {"
+ «hello worldˇ»
+ "});
+
+ // Test multiple line, single selection case
+ // Test code hack that covers the fact that to_case crate doesn't support '\n' as a word boundary
+ cx.set_state(indoc! {"
+ «The quick brown
+ fox jumps over
+ the lazy dogˇ»
+ "});
+ cx.update_editor(|e, cx| e.convert_to_title_case(&ConvertToTitleCase, cx));
+ cx.assert_editor_state(indoc! {"
+ «The Quick Brown
+ Fox Jumps Over
+ The Lazy Dogˇ»
+ "});
+
+ // Test multiple line, single selection case
+ // Test code hack that covers the fact that to_case crate doesn't support '\n' as a word boundary
+ cx.set_state(indoc! {"
+ «The quick brown
+ fox jumps over
+ the lazy dogˇ»
+ "});
+ cx.update_editor(|e, cx| e.convert_to_upper_camel_case(&ConvertToUpperCamelCase, cx));
+ cx.assert_editor_state(indoc! {"
+ «TheQuickBrown
+ FoxJumpsOver
+ TheLazyDogˇ»
+ "});
+
+ // From here on out, test more complex cases of manipulate_text()
+
+ // Test no selection case - should affect words cursors are in
+ // Cursor at beginning, middle, and end of word
+ cx.set_state(indoc! {"
+ ˇhello big beauˇtiful worldˇ
+ "});
+ cx.update_editor(|e, cx| e.convert_to_upper_case(&ConvertToUpperCase, cx));
+ cx.assert_editor_state(indoc! {"
+ «HELLOˇ» big «BEAUTIFULˇ» «WORLDˇ»
+ "});
+
+ // Test multiple selections on a single line and across multiple lines
+ cx.set_state(indoc! {"
+ «Theˇ» quick «brown
+ foxˇ» jumps «overˇ»
+ the «lazyˇ» dog
+ "});
+ cx.update_editor(|e, cx| e.convert_to_upper_case(&ConvertToUpperCase, cx));
+ cx.assert_editor_state(indoc! {"
+ «THEˇ» quick «BROWN
+ FOXˇ» jumps «OVERˇ»
+ the «LAZYˇ» dog
+ "});
+
+ // Test case where text length grows
+ cx.set_state(indoc! {"
+ «tschüߡ»
+ "});
+ cx.update_editor(|e, cx| e.convert_to_upper_case(&ConvertToUpperCase, cx));
+ cx.assert_editor_state(indoc! {"
+ «TSCHÜSSˇ»
+ "});
+
+ // Test to make sure we don't crash when text shrinks
+ cx.set_state(indoc! {"
+ aaa_bbbˇ
+ "});
+ cx.update_editor(|e, cx| e.convert_to_lower_camel_case(&ConvertToLowerCamelCase, cx));
+ cx.assert_editor_state(indoc! {"
+ «aaaBbbˇ»
+ "});
+
+ // Test to make sure we all aware of the fact that each word can grow and shrink
+ // Final selections should be aware of this fact
+ cx.set_state(indoc! {"
+ aaa_bˇbb bbˇb_ccc ˇccc_ddd
+ "});
+ cx.update_editor(|e, cx| e.convert_to_lower_camel_case(&ConvertToLowerCamelCase, cx));
+ cx.assert_editor_state(indoc! {"
+ «aaaBbbˇ» «bbbCccˇ» «cccDddˇ»
+ "});
+}
-// let registry = Arc::new(LanguageRegistry::test());
-// registry.add(language.clone());
-// cx.update_buffer(|buffer, cx| {
-// buffer.set_language_registry(registry);
-// buffer.set_language(Some(language), cx);
-// });
+#[gpui::test]
+fn test_duplicate_line(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// cx.set_state(
-// &r#"
-// 🏀ˇ
-// εˇ
-// ❤️ˇ
-// "#
-// .unindent(),
-// );
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("abc\ndef\nghi\n", cx);
+ build_editor(buffer, cx)
+ });
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ DisplayPoint::new(0, 0)..DisplayPoint::new(0, 1),
+ DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
+ DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0),
+ DisplayPoint::new(3, 0)..DisplayPoint::new(3, 0),
+ ])
+ });
+ view.duplicate_line(&DuplicateLine, cx);
+ assert_eq!(view.display_text(cx), "abc\nabc\ndef\ndef\nghi\n\n");
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ vec![
+ DisplayPoint::new(1, 0)..DisplayPoint::new(1, 1),
+ DisplayPoint::new(1, 2)..DisplayPoint::new(1, 2),
+ DisplayPoint::new(3, 0)..DisplayPoint::new(3, 0),
+ DisplayPoint::new(6, 0)..DisplayPoint::new(6, 0),
+ ]
+ );
+ });
+
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("abc\ndef\nghi\n", cx);
+ build_editor(buffer, cx)
+ });
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ DisplayPoint::new(0, 1)..DisplayPoint::new(1, 1),
+ DisplayPoint::new(1, 2)..DisplayPoint::new(2, 1),
+ ])
+ });
+ view.duplicate_line(&DuplicateLine, cx);
+ assert_eq!(view.display_text(cx), "abc\ndef\nghi\nabc\ndef\nghi\n");
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ vec![
+ DisplayPoint::new(3, 1)..DisplayPoint::new(4, 1),
+ DisplayPoint::new(4, 2)..DisplayPoint::new(5, 1),
+ ]
+ );
+ });
+}
-// // autoclose multiple nested brackets at multiple cursors
-// cx.update_editor(|view, cx| {
-// view.handle_input("{", cx);
-// view.handle_input("{", cx);
-// view.handle_input("{", cx);
-// });
-// cx.assert_editor_state(
-// &"
-// 🏀{{{ˇ}}}
-// ε{{{ˇ}}}
-// ❤️{{{ˇ}}}
-// "
-// .unindent(),
-// );
+#[gpui::test]
+fn test_move_line_up_down(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// // insert a different closing bracket
-// cx.update_editor(|view, cx| {
-// view.handle_input(")", cx);
-// });
-// cx.assert_editor_state(
-// &"
-// 🏀{{{)ˇ}}}
-// ε{{{)ˇ}}}
-// ❤️{{{)ˇ}}}
-// "
-// .unindent(),
-// );
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple(&sample_text(10, 5, 'a'), cx);
+ build_editor(buffer, cx)
+ });
+ view.update(cx, |view, cx| {
+ view.fold_ranges(
+ vec![
+ Point::new(0, 2)..Point::new(1, 2),
+ Point::new(2, 3)..Point::new(4, 1),
+ Point::new(7, 0)..Point::new(8, 4),
+ ],
+ true,
+ cx,
+ );
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
+ DisplayPoint::new(3, 1)..DisplayPoint::new(3, 1),
+ DisplayPoint::new(3, 2)..DisplayPoint::new(4, 3),
+ DisplayPoint::new(5, 0)..DisplayPoint::new(5, 2),
+ ])
+ });
+ assert_eq!(
+ view.display_text(cx),
+ "aa⋯bbb\nccc⋯eeee\nfffff\nggggg\n⋯i\njjjjj"
+ );
+
+ view.move_line_up(&MoveLineUp, cx);
+ assert_eq!(
+ view.display_text(cx),
+ "aa⋯bbb\nccc⋯eeee\nggggg\n⋯i\njjjjj\nfffff"
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ vec![
+ DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
+ DisplayPoint::new(2, 1)..DisplayPoint::new(2, 1),
+ DisplayPoint::new(2, 2)..DisplayPoint::new(3, 3),
+ DisplayPoint::new(4, 0)..DisplayPoint::new(4, 2)
+ ]
+ );
+ });
-// // skip over the auto-closed brackets when typing a closing bracket
-// cx.update_editor(|view, cx| {
-// view.move_right(&MoveRight, cx);
-// view.handle_input("}", cx);
-// view.handle_input("}", cx);
-// view.handle_input("}", cx);
-// });
-// cx.assert_editor_state(
-// &"
-// 🏀{{{)}}}}ˇ
-// ε{{{)}}}}ˇ
-// ❤️{{{)}}}}ˇ
-// "
-// .unindent(),
-// );
+ view.update(cx, |view, cx| {
+ view.move_line_down(&MoveLineDown, cx);
+ assert_eq!(
+ view.display_text(cx),
+ "ccc⋯eeee\naa⋯bbb\nfffff\nggggg\n⋯i\njjjjj"
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ vec![
+ DisplayPoint::new(1, 1)..DisplayPoint::new(1, 1),
+ DisplayPoint::new(3, 1)..DisplayPoint::new(3, 1),
+ DisplayPoint::new(3, 2)..DisplayPoint::new(4, 3),
+ DisplayPoint::new(5, 0)..DisplayPoint::new(5, 2)
+ ]
+ );
+ });
-// // autoclose multi-character pairs
-// cx.set_state(
-// &"
-// ˇ
-// ˇ
-// "
-// .unindent(),
-// );
-// cx.update_editor(|view, cx| {
-// view.handle_input("/", cx);
-// view.handle_input("*", cx);
-// });
-// cx.assert_editor_state(
-// &"
-// /*ˇ */
-// /*ˇ */
-// "
-// .unindent(),
-// );
+ view.update(cx, |view, cx| {
+ view.move_line_down(&MoveLineDown, cx);
+ assert_eq!(
+ view.display_text(cx),
+ "ccc⋯eeee\nfffff\naa⋯bbb\nggggg\n⋯i\njjjjj"
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ vec![
+ DisplayPoint::new(2, 1)..DisplayPoint::new(2, 1),
+ DisplayPoint::new(3, 1)..DisplayPoint::new(3, 1),
+ DisplayPoint::new(3, 2)..DisplayPoint::new(4, 3),
+ DisplayPoint::new(5, 0)..DisplayPoint::new(5, 2)
+ ]
+ );
+ });
-// // one cursor autocloses a multi-character pair, one cursor
-// // does not autoclose.
-// cx.set_state(
-// &"
-// /ˇ
-// ˇ
-// "
-// .unindent(),
-// );
-// cx.update_editor(|view, cx| view.handle_input("*", cx));
-// cx.assert_editor_state(
-// &"
-// /*ˇ */
-// *ˇ
-// "
-// .unindent(),
-// );
+ view.update(cx, |view, cx| {
+ view.move_line_up(&MoveLineUp, cx);
+ assert_eq!(
+ view.display_text(cx),
+ "ccc⋯eeee\naa⋯bbb\nggggg\n⋯i\njjjjj\nfffff"
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ vec![
+ DisplayPoint::new(1, 1)..DisplayPoint::new(1, 1),
+ DisplayPoint::new(2, 1)..DisplayPoint::new(2, 1),
+ DisplayPoint::new(2, 2)..DisplayPoint::new(3, 3),
+ DisplayPoint::new(4, 0)..DisplayPoint::new(4, 2)
+ ]
+ );
+ });
+}
-// // Don't autoclose if the next character isn't whitespace and isn't
-// // listed in the language's "autoclose_before" section.
-// cx.set_state("ˇa b");
-// cx.update_editor(|view, cx| view.handle_input("{", cx));
-// cx.assert_editor_state("{ˇa b");
-
-// // Don't autoclose if `close` is false for the bracket pair
-// cx.set_state("ˇ");
-// cx.update_editor(|view, cx| view.handle_input("[", cx));
-// cx.assert_editor_state("[ˇ");
-
-// // Surround with brackets if text is selected
-// cx.set_state("«aˇ» b");
-// cx.update_editor(|view, cx| view.handle_input("{", cx));
-// cx.assert_editor_state("{«aˇ»} b");
-
-// // Autclose pair where the start and end characters are the same
-// cx.set_state("aˇ");
-// cx.update_editor(|view, cx| view.handle_input("\"", cx));
-// cx.assert_editor_state("a\"ˇ\"");
-// cx.update_editor(|view, cx| view.handle_input("\"", cx));
-// cx.assert_editor_state("a\"\"ˇ");
-// }
+#[gpui::test]
+fn test_move_line_up_down_with_blocks(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let editor = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple(&sample_text(10, 5, 'a'), cx);
+ build_editor(buffer, cx)
+ });
+ editor.update(cx, |editor, cx| {
+ let snapshot = editor.buffer.read(cx).snapshot(cx);
+ editor.insert_blocks(
+ [BlockProperties {
+ style: BlockStyle::Fixed,
+ position: snapshot.anchor_after(Point::new(2, 0)),
+ disposition: BlockDisposition::Below,
+ height: 1,
+ render: Arc::new(|_| div().render()),
+ }],
+ Some(Autoscroll::fit()),
+ cx,
+ );
+ editor.change_selections(None, cx, |s| {
+ s.select_ranges([Point::new(2, 0)..Point::new(2, 0)])
+ });
+ editor.move_line_down(&MoveLineDown, cx);
+ });
+}
+//todo!(test_transpose)
// #[gpui::test]
-// async fn test_autoclose_with_embedded_language(cx: &mut gpui::TestAppContext) {
+// fn test_transpose(cx: &mut TestAppContext) {
// init_test(cx, |_| {});
-// let mut cx = EditorTestContext::new(cx).await;
+// _ = cx.add_window(|cx| {
+// let mut editor = build_editor(MultiBuffer::build_simple("abc", cx), cx);
-// let html_language = Arc::new(
-// Language::new(
-// LanguageConfig {
-// name: "HTML".into(),
-// brackets: BracketPairConfig {
-// pairs: vec![
-// BracketPair {
-// start: "<".into(),
-// end: ">".into(),
-// close: true,
-// ..Default::default()
-// },
-// BracketPair {
-// start: "{".into(),
-// end: "}".into(),
-// close: true,
-// ..Default::default()
-// },
-// BracketPair {
-// start: "(".into(),
-// end: ")".into(),
-// close: true,
-// ..Default::default()
-// },
-// ],
-// ..Default::default()
-// },
-// autoclose_before: "})]>".into(),
-// ..Default::default()
-// },
-// Some(tree_sitter_html::language()),
-// )
-// .with_injection_query(
-// r#"
-// (script_element
-// (raw_text) @content
-// (#set! "language" "javascript"))
-// "#,
-// )
-// .unwrap(),
-// );
+// editor.change_selections(None, cx, |s| s.select_ranges([1..1]));
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "bac");
+// assert_eq!(editor.selections.ranges(cx), [2..2]);
-// let javascript_language = Arc::new(Language::new(
-// LanguageConfig {
-// name: "JavaScript".into(),
-// brackets: BracketPairConfig {
-// pairs: vec![
-// BracketPair {
-// start: "/*".into(),
-// end: " */".into(),
-// close: true,
-// ..Default::default()
-// },
-// BracketPair {
-// start: "{".into(),
-// end: "}".into(),
-// close: true,
-// ..Default::default()
-// },
-// BracketPair {
-// start: "(".into(),
-// end: ")".into(),
-// close: true,
-// ..Default::default()
-// },
-// ],
-// ..Default::default()
-// },
-// autoclose_before: "})]>".into(),
-// ..Default::default()
-// },
-// Some(tree_sitter_typescript::language_tsx()),
-// ));
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "bca");
+// assert_eq!(editor.selections.ranges(cx), [3..3]);
-// let registry = Arc::new(LanguageRegistry::test());
-// registry.add(html_language.clone());
-// registry.add(javascript_language.clone());
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "bac");
+// assert_eq!(editor.selections.ranges(cx), [3..3]);
-// cx.update_buffer(|buffer, cx| {
-// buffer.set_language_registry(registry);
-// buffer.set_language(Some(html_language), cx);
+// editor
// });
-// cx.set_state(
-// &r#"
-// <body>ˇ
-// <script>
-// var x = 1;ˇ
-// </script>
-// </body>ˇ
-// "#
-// .unindent(),
-// );
+// _ = cx.add_window(|cx| {
+// let mut editor = build_editor(MultiBuffer::build_simple("abc\nde", cx), cx);
-// // Precondition: different languages are active at different locations.
-// cx.update_editor(|editor, cx| {
-// let snapshot = editor.snapshot(cx);
-// let cursors = editor.selections.ranges::<usize>(cx);
-// let languages = cursors
-// .iter()
-// .map(|c| snapshot.language_at(c.start).unwrap().name())
-// .collect::<Vec<_>>();
-// assert_eq!(
-// languages,
-// &["HTML".into(), "JavaScript".into(), "HTML".into()]
-// );
-// });
+// editor.change_selections(None, cx, |s| s.select_ranges([3..3]));
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "acb\nde");
+// assert_eq!(editor.selections.ranges(cx), [3..3]);
-// // Angle brackets autoclose in HTML, but not JavaScript.
-// cx.update_editor(|editor, cx| {
-// editor.handle_input("<", cx);
-// editor.handle_input("a", cx);
-// });
-// cx.assert_editor_state(
-// &r#"
-// <body><aˇ>
-// <script>
-// var x = 1;<aˇ
-// </script>
-// </body><aˇ>
-// "#
-// .unindent(),
-// );
+// editor.change_selections(None, cx, |s| s.select_ranges([4..4]));
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "acbd\ne");
+// assert_eq!(editor.selections.ranges(cx), [5..5]);
-// // Curly braces and parens autoclose in both HTML and JavaScript.
-// cx.update_editor(|editor, cx| {
-// editor.handle_input(" b=", cx);
-// editor.handle_input("{", cx);
-// editor.handle_input("c", cx);
-// editor.handle_input("(", cx);
-// });
-// cx.assert_editor_state(
-// &r#"
-// <body><a b={c(ˇ)}>
-// <script>
-// var x = 1;<a b={c(ˇ)}
-// </script>
-// </body><a b={c(ˇ)}>
-// "#
-// .unindent(),
-// );
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "acbde\n");
+// assert_eq!(editor.selections.ranges(cx), [6..6]);
-// // Brackets that were already autoclosed are skipped.
-// cx.update_editor(|editor, cx| {
-// editor.handle_input(")", cx);
-// editor.handle_input("d", cx);
-// editor.handle_input("}", cx);
-// });
-// cx.assert_editor_state(
-// &r#"
-// <body><a b={c()d}ˇ>
-// <script>
-// var x = 1;<a b={c()d}ˇ
-// </script>
-// </body><a b={c()d}ˇ>
-// "#
-// .unindent(),
-// );
-// cx.update_editor(|editor, cx| {
-// editor.handle_input(">", cx);
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "acbd\ne");
+// assert_eq!(editor.selections.ranges(cx), [6..6]);
+
+// editor
// });
-// cx.assert_editor_state(
-// &r#"
-// <body><a b={c()d}>ˇ
-// <script>
-// var x = 1;<a b={c()d}>ˇ
-// </script>
-// </body><a b={c()d}>ˇ
-// "#
-// .unindent(),
-// );
-// // Reset
-// cx.set_state(
-// &r#"
-// <body>ˇ
-// <script>
-// var x = 1;ˇ
-// </script>
-// </body>ˇ
-// "#
-// .unindent(),
-// );
+// _ = cx.add_window(|cx| {
+// let mut editor = build_editor(MultiBuffer::build_simple("abc\nde", cx), cx);
-// cx.update_editor(|editor, cx| {
-// editor.handle_input("<", cx);
-// });
-// cx.assert_editor_state(
-// &r#"
-// <body><ˇ>
-// <script>
-// var x = 1;<ˇ
-// </script>
-// </body><ˇ>
-// "#
-// .unindent(),
-// );
+// editor.change_selections(None, cx, |s| s.select_ranges([1..1, 2..2, 4..4]));
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "bacd\ne");
+// assert_eq!(editor.selections.ranges(cx), [2..2, 3..3, 5..5]);
-// // When backspacing, the closing angle brackets are removed.
-// cx.update_editor(|editor, cx| {
-// editor.backspace(&Backspace, cx);
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "bcade\n");
+// assert_eq!(editor.selections.ranges(cx), [3..3, 4..4, 6..6]);
+
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "bcda\ne");
+// assert_eq!(editor.selections.ranges(cx), [4..4, 6..6]);
+
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "bcade\n");
+// assert_eq!(editor.selections.ranges(cx), [4..4, 6..6]);
+
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "bcaed\n");
+// assert_eq!(editor.selections.ranges(cx), [5..5, 6..6]);
+
+// editor
// });
-// cx.assert_editor_state(
-// &r#"
-// <body>ˇ
-// <script>
-// var x = 1;ˇ
-// </script>
-// </body>ˇ
-// "#
-// .unindent(),
-// );
-// // Block comments autoclose in JavaScript, but not HTML.
-// cx.update_editor(|editor, cx| {
-// editor.handle_input("/", cx);
-// editor.handle_input("*", cx);
+// _ = cx.add_window(|cx| {
+// let mut editor = build_editor(MultiBuffer::build_simple("🍐🏀✋", cx), cx);
+
+// editor.change_selections(None, cx, |s| s.select_ranges([4..4]));
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "🏀🍐✋");
+// assert_eq!(editor.selections.ranges(cx), [8..8]);
+
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "🏀✋🍐");
+// assert_eq!(editor.selections.ranges(cx), [11..11]);
+
+// editor.transpose(&Default::default(), cx);
+// assert_eq!(editor.text(cx), "🏀🍐✋");
+// assert_eq!(editor.selections.ranges(cx), [11..11]);
+
+// editor
// });
-// cx.assert_editor_state(
-// &r#"
-// <body>/*ˇ
-// <script>
-// var x = 1;/*ˇ */
-// </script>
-// </body>/*ˇ
-// "#
-// .unindent(),
-// );
// }
+//todo!(clipboard)
// #[gpui::test]
-// async fn test_autoclose_with_overrides(cx: &mut gpui::TestAppContext) {
+// async fn test_clipboard(cx: &mut gpui::TestAppContext) {
// init_test(cx, |_| {});
// let mut cx = EditorTestContext::new(cx).await;
-// let rust_language = Arc::new(
-// Language::new(
-// LanguageConfig {
-// name: "Rust".into(),
-// brackets: serde_json::from_value(json!([
-// { "start": "{", "end": "}", "close": true, "newline": true },
-// { "start": "\"", "end": "\"", "close": true, "newline": false, "not_in": ["string"] },
-// ]))
-// .unwrap(),
-// autoclose_before: "})]>".into(),
-// ..Default::default()
-// },
-// Some(tree_sitter_rust::language()),
-// )
-// .with_override_query("(string_literal) @string")
-// .unwrap(),
-// );
-
-// let registry = Arc::new(LanguageRegistry::test());
-// registry.add(rust_language.clone());
-
-// cx.update_buffer(|buffer, cx| {
-// buffer.set_language_registry(registry);
-// buffer.set_language(Some(rust_language), cx);
-// });
+// cx.set_state("«one✅ ˇ»two «three ˇ»four «five ˇ»six ");
+// cx.update_editor(|e, cx| e.cut(&Cut, cx));
+// cx.assert_editor_state("ˇtwo ˇfour ˇsix ");
-// cx.set_state(
-// &r#"
-// let x = ˇ
-// "#
-// .unindent(),
-// );
+// // Paste with three cursors. Each cursor pastes one slice of the clipboard text.
+// cx.set_state("two ˇfour ˇsix ˇ");
+// cx.update_editor(|e, cx| e.paste(&Paste, cx));
+// cx.assert_editor_state("two one✅ ˇfour three ˇsix five ˇ");
-// // Inserting a quotation mark. A closing quotation mark is automatically inserted.
-// cx.update_editor(|editor, cx| {
-// editor.handle_input("\"", cx);
+// // Paste again but with only two cursors. Since the number of cursors doesn't
+// // match the number of slices in the clipboard, the entire clipboard text
+// // is pasted at each cursor.
+// cx.set_state("ˇtwo one✅ four three six five ˇ");
+// cx.update_editor(|e, cx| {
+// e.handle_input("( ", cx);
+// e.paste(&Paste, cx);
+// e.handle_input(") ", cx);
// });
// cx.assert_editor_state(
-// &r#"
-// let x = "ˇ"
-// "#
-// .unindent(),
+// &([
+// "( one✅ ",
+// "three ",
+// "five ) ˇtwo one✅ four three six five ( one✅ ",
+// "three ",
+// "five ) ˇ",
+// ]
+// .join("\n")),
// );
-// // Inserting another quotation mark. The cursor moves across the existing
-// // automatically-inserted quotation mark.
-// cx.update_editor(|editor, cx| {
-// editor.handle_input("\"", cx);
-// });
-// cx.assert_editor_state(
-// &r#"
-// let x = ""ˇ
-// "#
-// .unindent(),
-// );
+// // Cut with three selections, one of which is full-line.
+// cx.set_state(indoc! {"
+// 1«2ˇ»3
+// 4ˇ567
+// «8ˇ»9"});
+// cx.update_editor(|e, cx| e.cut(&Cut, cx));
+// cx.assert_editor_state(indoc! {"
+// 1ˇ3
+// ˇ9"});
-// // Reset
-// cx.set_state(
-// &r#"
-// let x = ˇ
-// "#
-// .unindent(),
-// );
+// // Paste with three selections, noticing how the copied selection that was full-line
+// // gets inserted before the second cursor.
+// cx.set_state(indoc! {"
+// 1ˇ3
+// 9ˇ
+// «oˇ»ne"});
+// cx.update_editor(|e, cx| e.paste(&Paste, cx));
+// cx.assert_editor_state(indoc! {"
+// 12ˇ3
+// 4567
+// 9ˇ
+// 8ˇne"});
-// // Inserting a quotation mark inside of a string. A second quotation mark is not inserted.
-// cx.update_editor(|editor, cx| {
-// editor.handle_input("\"", cx);
-// editor.handle_input(" ", cx);
-// editor.move_left(&Default::default(), cx);
-// editor.handle_input("\\", cx);
-// editor.handle_input("\"", cx);
-// });
-// cx.assert_editor_state(
-// &r#"
-// let x = "\"ˇ "
-// "#
-// .unindent(),
-// );
+// // Copy with a single cursor only, which writes the whole line into the clipboard.
+// cx.set_state(indoc! {"
+// The quick brown
+// fox juˇmps over
+// the lazy dog"});
+// cx.update_editor(|e, cx| e.copy(&Copy, cx));
+// cx.cx.assert_clipboard_content(Some("fox jumps over\n"));
-// // Inserting a closing quotation mark at the position of an automatically-inserted quotation
-// // mark. Nothing is inserted.
-// cx.update_editor(|editor, cx| {
-// editor.move_right(&Default::default(), cx);
-// editor.handle_input("\"", cx);
-// });
-// cx.assert_editor_state(
-// &r#"
-// let x = "\" "ˇ
-// "#
-// .unindent(),
-// );
+// // Paste with three selections, noticing how the copied full-line selection is inserted
+// // before the empty selections but replaces the selection that is non-empty.
+// cx.set_state(indoc! {"
+// Tˇhe quick brown
+// «foˇ»x jumps over
+// tˇhe lazy dog"});
+// cx.update_editor(|e, cx| e.paste(&Paste, cx));
+// cx.assert_editor_state(indoc! {"
+// fox jumps over
+// Tˇhe quick brown
+// fox jumps over
+// ˇx jumps over
+// fox jumps over
+// tˇhe lazy dog"});
// }
// #[gpui::test]
-// async fn test_surround_with_pair(cx: &mut gpui::TestAppContext) {
+// async fn test_paste_multiline(cx: &mut gpui::TestAppContext) {
// init_test(cx, |_| {});
+// let mut cx = EditorTestContext::new(cx).await;
// let language = Arc::new(Language::new(
-// LanguageConfig {
-// brackets: BracketPairConfig {
-// pairs: vec![
-// BracketPair {
-// start: "{".to_string(),
-// end: "}".to_string(),
-// close: true,
-// newline: true,
-// },
-// BracketPair {
-// start: "/* ".to_string(),
-// end: "*/".to_string(),
-// close: true,
-// ..Default::default()
-// },
-// ],
-// ..Default::default()
-// },
-// ..Default::default()
-// },
+// LanguageConfig::default(),
// Some(tree_sitter_rust::language()),
// ));
+// cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
-// let text = r#"
-// a
-// b
-// c
-// "#
-// .unindent();
-
-// let buffer =
-// cx.add_model(|cx| Buffer::new(0, cx.model_id() as u64, text).with_language(language, cx));
-// let buffer = cx.add_model(|cx| MultiBuffer::singleton(buffer, cx));
-// let view = cx.add_window(|cx| build_editor(buffer, cx)).root(cx);
-// view.condition(cx, |view, cx| !view.buffer.read(cx).is_parsing(cx))
-// .await;
-
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// DisplayPoint::new(0, 0)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(1, 0)..DisplayPoint::new(1, 1),
-// DisplayPoint::new(2, 0)..DisplayPoint::new(2, 1),
-// ])
-// });
-
-// view.handle_input("{", cx);
-// view.handle_input("{", cx);
-// view.handle_input("{", cx);
-// assert_eq!(
-// view.text(cx),
-// "
-// {{{a}}}
-// {{{b}}}
-// {{{c}}}
-// "
-// .unindent()
+// // Cut an indented block, without the leading whitespace.
+// cx.set_state(indoc! {"
+// const a: B = (
+// c(),
+// «d(
+// e,
+// f
+// )ˇ»
// );
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// [
-// DisplayPoint::new(0, 3)..DisplayPoint::new(0, 4),
-// DisplayPoint::new(1, 3)..DisplayPoint::new(1, 4),
-// DisplayPoint::new(2, 3)..DisplayPoint::new(2, 4)
-// ]
+// "});
+// cx.update_editor(|e, cx| e.cut(&Cut, cx));
+// cx.assert_editor_state(indoc! {"
+// const a: B = (
+// c(),
+// ˇ
// );
+// "});
-// view.undo(&Undo, cx);
-// view.undo(&Undo, cx);
-// view.undo(&Undo, cx);
-// assert_eq!(
-// view.text(cx),
-// "
-// a
-// b
-// c
-// "
-// .unindent()
-// );
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// [
-// DisplayPoint::new(0, 0)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(1, 0)..DisplayPoint::new(1, 1),
-// DisplayPoint::new(2, 0)..DisplayPoint::new(2, 1)
-// ]
+// // Paste it at the same position.
+// cx.update_editor(|e, cx| e.paste(&Paste, cx));
+// cx.assert_editor_state(indoc! {"
+// const a: B = (
+// c(),
+// d(
+// e,
+// f
+// )ˇ
// );
+// "});
-// // Ensure inserting the first character of a multi-byte bracket pair
-// // doesn't surround the selections with the bracket.
-// view.handle_input("/", cx);
-// assert_eq!(
-// view.text(cx),
-// "
-// /
-// /
-// /
-// "
-// .unindent()
+// // Paste it at a line with a lower indent level.
+// cx.set_state(indoc! {"
+// ˇ
+// const a: B = (
+// c(),
// );
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// [
-// DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(1, 1)..DisplayPoint::new(1, 1),
-// DisplayPoint::new(2, 1)..DisplayPoint::new(2, 1)
-// ]
+// "});
+// cx.update_editor(|e, cx| e.paste(&Paste, cx));
+// cx.assert_editor_state(indoc! {"
+// d(
+// e,
+// f
+// )ˇ
+// const a: B = (
+// c(),
// );
+// "});
-// view.undo(&Undo, cx);
-// assert_eq!(
-// view.text(cx),
-// "
-// a
-// b
-// c
-// "
-// .unindent()
-// );
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// [
-// DisplayPoint::new(0, 0)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(1, 0)..DisplayPoint::new(1, 1),
-// DisplayPoint::new(2, 0)..DisplayPoint::new(2, 1)
-// ]
-// );
+// // Cut an indented block, with the leading whitespace.
+// cx.set_state(indoc! {"
+// const a: B = (
+// c(),
+// « d(
+// e,
+// f
+// )
+// ˇ»);
+// "});
+// cx.update_editor(|e, cx| e.cut(&Cut, cx));
+// cx.assert_editor_state(indoc! {"
+// const a: B = (
+// c(),
+// ˇ);
+// "});
-// // Ensure inserting the last character of a multi-byte bracket pair
-// // doesn't surround the selections with the bracket.
-// view.handle_input("*", cx);
-// assert_eq!(
-// view.text(cx),
-// "
-// *
-// *
-// *
-// "
-// .unindent()
+// // Paste it at the same position.
+// cx.update_editor(|e, cx| e.paste(&Paste, cx));
+// cx.assert_editor_state(indoc! {"
+// const a: B = (
+// c(),
+// d(
+// e,
+// f
+// )
+// ˇ);
+// "});
+
+// // Paste it at a line with a higher indent level.
+// cx.set_state(indoc! {"
+// const a: B = (
+// c(),
+// d(
+// e,
+// fˇ
+// )
// );
-// assert_eq!(
-// view.selections.display_ranges(cx),
-// [
-// DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
-// DisplayPoint::new(1, 1)..DisplayPoint::new(1, 1),
-// DisplayPoint::new(2, 1)..DisplayPoint::new(2, 1)
-// ]
+// "});
+// cx.update_editor(|e, cx| e.paste(&Paste, cx));
+// cx.assert_editor_state(indoc! {"
+// const a: B = (
+// c(),
+// d(
+// e,
+// f d(
+// e,
+// f
+// )
+// ˇ
+// )
// );
-// });
+// "});
// }
-// #[gpui::test]
-// async fn test_delete_autoclose_pair(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
+#[gpui::test]
+fn test_select_all(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// let language = Arc::new(Language::new(
-// LanguageConfig {
-// brackets: BracketPairConfig {
-// pairs: vec![BracketPair {
-// start: "{".to_string(),
-// end: "}".to_string(),
-// close: true,
-// newline: true,
-// }],
-// ..Default::default()
-// },
-// autoclose_before: "}".to_string(),
-// ..Default::default()
-// },
-// Some(tree_sitter_rust::language()),
-// ));
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple("abc\nde\nfgh", cx);
+ build_editor(buffer, cx)
+ });
+ view.update(cx, |view, cx| {
+ view.select_all(&SelectAll, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ &[DisplayPoint::new(0, 0)..DisplayPoint::new(2, 3)]
+ );
+ });
+}
-// let text = r#"
-// a
-// b
-// c
-// "#
-// .unindent();
-
-// let buffer =
-// cx.add_model(|cx| Buffer::new(0, cx.model_id() as u64, text).with_language(language, cx));
-// let buffer = cx.add_model(|cx| MultiBuffer::singleton(buffer, cx));
-// let editor = cx.add_window(|cx| build_editor(buffer, cx)).root(cx);
-// editor
-// .condition(cx, |view, cx| !view.buffer.read(cx).is_parsing(cx))
-// .await;
+#[gpui::test]
+fn test_select_line(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
-// editor.update(cx, |editor, cx| {
-// editor.change_selections(None, cx, |s| {
-// s.select_ranges([
-// Point::new(0, 1)..Point::new(0, 1),
-// Point::new(1, 1)..Point::new(1, 1),
-// Point::new(2, 1)..Point::new(2, 1),
-// ])
-// });
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple(&sample_text(6, 5, 'a'), cx);
+ build_editor(buffer, cx)
+ });
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ DisplayPoint::new(0, 0)..DisplayPoint::new(0, 1),
+ DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
+ DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0),
+ DisplayPoint::new(4, 2)..DisplayPoint::new(4, 2),
+ ])
+ });
+ view.select_line(&SelectLine, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ vec![
+ DisplayPoint::new(0, 0)..DisplayPoint::new(2, 0),
+ DisplayPoint::new(4, 0)..DisplayPoint::new(5, 0),
+ ]
+ );
+ });
-// editor.handle_input("{", cx);
-// editor.handle_input("{", cx);
-// editor.handle_input("_", cx);
-// assert_eq!(
-// editor.text(cx),
-// "
-// a{{_}}
-// b{{_}}
-// c{{_}}
-// "
-// .unindent()
-// );
-// assert_eq!(
-// editor.selections.ranges::<Point>(cx),
-// [
-// Point::new(0, 4)..Point::new(0, 4),
-// Point::new(1, 4)..Point::new(1, 4),
-// Point::new(2, 4)..Point::new(2, 4)
-// ]
-// );
+ view.update(cx, |view, cx| {
+ view.select_line(&SelectLine, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ vec![
+ DisplayPoint::new(0, 0)..DisplayPoint::new(3, 0),
+ DisplayPoint::new(4, 0)..DisplayPoint::new(5, 5),
+ ]
+ );
+ });
-// editor.backspace(&Default::default(), cx);
-// editor.backspace(&Default::default(), cx);
-// assert_eq!(
-// editor.text(cx),
-// "
-// a{}
-// b{}
-// c{}
-// "
-// .unindent()
-// );
-// assert_eq!(
-// editor.selections.ranges::<Point>(cx),
-// [
-// Point::new(0, 2)..Point::new(0, 2),
-// Point::new(1, 2)..Point::new(1, 2),
-// Point::new(2, 2)..Point::new(2, 2)
-// ]
-// );
+ view.update(cx, |view, cx| {
+ view.select_line(&SelectLine, cx);
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ vec![DisplayPoint::new(0, 0)..DisplayPoint::new(5, 5)]
+ );
+ });
+}
-// editor.delete_to_previous_word_start(&Default::default(), cx);
-// assert_eq!(
-// editor.text(cx),
-// "
-// a
-// b
-// c
-// "
-// .unindent()
-// );
-// assert_eq!(
-// editor.selections.ranges::<Point>(cx),
-// [
-// Point::new(0, 1)..Point::new(0, 1),
-// Point::new(1, 1)..Point::new(1, 1),
-// Point::new(2, 1)..Point::new(2, 1)
-// ]
-// );
-// });
-// }
+#[gpui::test]
+fn test_split_selection_into_lines(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let view = cx.add_window(|cx| {
+ let buffer = MultiBuffer::build_simple(&sample_text(9, 5, 'a'), cx);
+ build_editor(buffer, cx)
+ });
+ view.update(cx, |view, cx| {
+ view.fold_ranges(
+ vec![
+ Point::new(0, 2)..Point::new(1, 2),
+ Point::new(2, 3)..Point::new(4, 1),
+ Point::new(7, 0)..Point::new(8, 4),
+ ],
+ true,
+ cx,
+ );
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ DisplayPoint::new(0, 0)..DisplayPoint::new(0, 1),
+ DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
+ DisplayPoint::new(1, 0)..DisplayPoint::new(1, 0),
+ DisplayPoint::new(4, 4)..DisplayPoint::new(4, 4),
+ ])
+ });
+ assert_eq!(view.display_text(cx), "aa⋯bbb\nccc⋯eeee\nfffff\nggggg\n⋯i");
+ });
+
+ view.update(cx, |view, cx| {
+ view.split_selection_into_lines(&SplitSelectionIntoLines, cx);
+ assert_eq!(
+ view.display_text(cx),
+ "aaaaa\nbbbbb\nccc⋯eeee\nfffff\nggggg\n⋯i"
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ [
+ DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
+ DisplayPoint::new(0, 2)..DisplayPoint::new(0, 2),
+ DisplayPoint::new(2, 0)..DisplayPoint::new(2, 0),
+ DisplayPoint::new(5, 4)..DisplayPoint::new(5, 4)
+ ]
+ );
+ });
+
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([DisplayPoint::new(5, 0)..DisplayPoint::new(0, 1)])
+ });
+ view.split_selection_into_lines(&SplitSelectionIntoLines, cx);
+ assert_eq!(
+ view.display_text(cx),
+ "aaaaa\nbbbbb\nccccc\nddddd\neeeee\nfffff\nggggg\nhhhhh\niiiii"
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ [
+ DisplayPoint::new(0, 5)..DisplayPoint::new(0, 5),
+ DisplayPoint::new(1, 5)..DisplayPoint::new(1, 5),
+ DisplayPoint::new(2, 5)..DisplayPoint::new(2, 5),
+ DisplayPoint::new(3, 5)..DisplayPoint::new(3, 5),
+ DisplayPoint::new(4, 5)..DisplayPoint::new(4, 5),
+ DisplayPoint::new(5, 5)..DisplayPoint::new(5, 5),
+ DisplayPoint::new(6, 5)..DisplayPoint::new(6, 5),
+ DisplayPoint::new(7, 0)..DisplayPoint::new(7, 0)
+ ]
+ );
+ });
+}
+
+#[gpui::test]
+async fn test_add_selection_above_below(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut cx = EditorTestContext::new(cx).await;
+
+ // let buffer = MultiBuffer::build_simple("abc\ndefghi\n\njk\nlmno\n", cx);
+ cx.set_state(indoc!(
+ r#"abc
+ defˇghi
+
+ jk
+ nlmo
+ "#
+ ));
+
+ cx.update_editor(|editor, cx| {
+ editor.add_selection_above(&Default::default(), cx);
+ });
-// #[gpui::test]
-// async fn test_snippets(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
+ cx.assert_editor_state(indoc!(
+ r#"abcˇ
+ defˇghi
-// let (text, insertion_ranges) = marked_text_ranges(
-// indoc! {"
-// a.ˇ b
-// a.ˇ b
-// a.ˇ b
-// "},
-// false,
-// );
+ jk
+ nlmo
+ "#
+ ));
-// let buffer = cx.update(|cx| MultiBuffer::build_simple(&text, cx));
-// let editor = cx.add_window(|cx| build_editor(buffer, cx)).root(cx);
+ cx.update_editor(|editor, cx| {
+ editor.add_selection_above(&Default::default(), cx);
+ });
-// editor.update(cx, |editor, cx| {
-// let snippet = Snippet::parse("f(${1:one}, ${2:two}, ${1:three})$0").unwrap();
+ cx.assert_editor_state(indoc!(
+ r#"abcˇ
+ defˇghi
-// editor
-// .insert_snippet(&insertion_ranges, snippet, cx)
-// .unwrap();
+ jk
+ nlmo
+ "#
+ ));
-// fn assert(editor: &mut Editor, cx: &mut ViewContext<Editor>, marked_text: &str) {
-// let (expected_text, selection_ranges) = marked_text_ranges(marked_text, false);
-// assert_eq!(editor.text(cx), expected_text);
-// assert_eq!(editor.selections.ranges::<usize>(cx), selection_ranges);
-// }
+ cx.update_editor(|view, cx| {
+ view.add_selection_below(&Default::default(), cx);
+ });
-// assert(
-// editor,
-// cx,
-// indoc! {"
-// a.f(«one», two, «three») b
-// a.f(«one», two, «three») b
-// a.f(«one», two, «three») b
-// "},
-// );
+ cx.assert_editor_state(indoc!(
+ r#"abc
+ defˇghi
-// // Can't move earlier than the first tab stop
-// assert!(!editor.move_to_prev_snippet_tabstop(cx));
-// assert(
-// editor,
-// cx,
-// indoc! {"
-// a.f(«one», two, «three») b
-// a.f(«one», two, «three») b
-// a.f(«one», two, «three») b
-// "},
-// );
+ jk
+ nlmo
+ "#
+ ));
-// assert!(editor.move_to_next_snippet_tabstop(cx));
-// assert(
-// editor,
-// cx,
-// indoc! {"
-// a.f(one, «two», three) b
-// a.f(one, «two», three) b
-// a.f(one, «two», three) b
-// "},
-// );
+ cx.update_editor(|view, cx| {
+ view.undo_selection(&Default::default(), cx);
+ });
-// editor.move_to_prev_snippet_tabstop(cx);
-// assert(
-// editor,
-// cx,
-// indoc! {"
-// a.f(«one», two, «three») b
-// a.f(«one», two, «three») b
-// a.f(«one», two, «three») b
-// "},
-// );
+ cx.assert_editor_state(indoc!(
+ r#"abcˇ
+ defˇghi
-// assert!(editor.move_to_next_snippet_tabstop(cx));
-// assert(
-// editor,
-// cx,
-// indoc! {"
-// a.f(one, «two», three) b
-// a.f(one, «two», three) b
-// a.f(one, «two», three) b
-// "},
-// );
-// assert!(editor.move_to_next_snippet_tabstop(cx));
-// assert(
-// editor,
-// cx,
-// indoc! {"
-// a.f(one, two, three)ˇ b
-// a.f(one, two, three)ˇ b
-// a.f(one, two, three)ˇ b
-// "},
-// );
+ jk
+ nlmo
+ "#
+ ));
-// // As soon as the last tab stop is reached, snippet state is gone
-// editor.move_to_prev_snippet_tabstop(cx);
-// assert(
-// editor,
-// cx,
-// indoc! {"
-// a.f(one, two, three)ˇ b
-// a.f(one, two, three)ˇ b
-// a.f(one, two, three)ˇ b
-// "},
-// );
-// });
-// }
+ cx.update_editor(|view, cx| {
+ view.redo_selection(&Default::default(), cx);
+ });
-// #[gpui::test]
-// async fn test_document_format_during_save(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
+ cx.assert_editor_state(indoc!(
+ r#"abc
+ defˇghi
-// let mut language = Language::new(
-// LanguageConfig {
-// name: "Rust".into(),
-// path_suffixes: vec!["rs".to_string()],
-// ..Default::default()
-// },
-// Some(tree_sitter_rust::language()),
-// );
-// let mut fake_servers = language
-// .set_fake_lsp_adapter(Arc::new(FakeLspAdapter {
-// capabilities: lsp::ServerCapabilities {
-// document_formatting_provider: Some(lsp::OneOf::Left(true)),
-// ..Default::default()
-// },
-// ..Default::default()
-// }))
-// .await;
+ jk
+ nlmo
+ "#
+ ));
-// let fs = FakeFs::new(cx.background());
-// fs.insert_file("/file.rs", Default::default()).await;
+ cx.update_editor(|view, cx| {
+ view.add_selection_below(&Default::default(), cx);
+ });
-// let project = Project::test(fs, ["/file.rs".as_ref()], cx).await;
-// project.update(cx, |project, _| project.languages().add(Arc::new(language)));
-// let buffer = project
-// .update(cx, |project, cx| project.open_local_buffer("/file.rs", cx))
-// .await
-// .unwrap();
+ cx.assert_editor_state(indoc!(
+ r#"abc
+ defˇghi
-// cx.foreground().start_waiting();
-// let fake_server = fake_servers.next().await.unwrap();
+ jk
+ nlmˇo
+ "#
+ ));
-// let buffer = cx.add_model(|cx| MultiBuffer::singleton(buffer, cx));
-// let editor = cx.add_window(|cx| build_editor(buffer, cx)).root(cx);
-// editor.update(cx, |editor, cx| editor.set_text("one\ntwo\nthree\n", cx));
-// assert!(cx.read(|cx| editor.is_dirty(cx)));
+ cx.update_editor(|view, cx| {
+ view.add_selection_below(&Default::default(), cx);
+ });
-// let save = editor.update(cx, |editor, cx| editor.save(project.clone(), cx));
-// fake_server
-// .handle_request::<lsp::request::Formatting, _, _>(move |params, _| async move {
-// assert_eq!(
-// params.text_document.uri,
-// lsp::Url::from_file_path("/file.rs").unwrap()
-// );
-// assert_eq!(params.options.tab_size, 4);
-// Ok(Some(vec![lsp::TextEdit::new(
-// lsp::Range::new(lsp::Position::new(0, 3), lsp::Position::new(1, 0)),
-// ", ".to_string(),
-// )]))
-// })
-// .next()
-// .await;
-// cx.foreground().start_waiting();
-// save.await.unwrap();
-// assert_eq!(
-// editor.read_with(cx, |editor, cx| editor.text(cx)),
-// "one, two\nthree\n"
-// );
-// assert!(!cx.read(|cx| editor.is_dirty(cx)));
+ cx.assert_editor_state(indoc!(
+ r#"abc
+ defˇghi
-// editor.update(cx, |editor, cx| editor.set_text("one\ntwo\nthree\n", cx));
-// assert!(cx.read(|cx| editor.is_dirty(cx)));
+ jk
+ nlmˇo
+ "#
+ ));
-// // Ensure we can still save even if formatting hangs.
-// fake_server.handle_request::<lsp::request::Formatting, _, _>(move |params, _| async move {
-// assert_eq!(
-// params.text_document.uri,
-// lsp::Url::from_file_path("/file.rs").unwrap()
-// );
-// futures::future::pending::<()>().await;
-// unreachable!()
-// });
-// let save = editor.update(cx, |editor, cx| editor.save(project.clone(), cx));
-// cx.foreground().advance_clock(super::FORMAT_TIMEOUT);
-// cx.foreground().start_waiting();
-// save.await.unwrap();
-// assert_eq!(
-// editor.read_with(cx, |editor, cx| editor.text(cx)),
-// "one\ntwo\nthree\n"
-// );
-// assert!(!cx.read(|cx| editor.is_dirty(cx)));
-
-// // Set rust language override and assert overridden tabsize is sent to language server
-// update_test_language_settings(cx, |settings| {
-// settings.languages.insert(
-// "Rust".into(),
-// LanguageSettingsContent {
-// tab_size: NonZeroU32::new(8),
-// ..Default::default()
-// },
-// );
-// });
+ // change selections
+ cx.set_state(indoc!(
+ r#"abc
+ def«ˇg»hi
-// let save = editor.update(cx, |editor, cx| editor.save(project.clone(), cx));
-// fake_server
-// .handle_request::<lsp::request::Formatting, _, _>(move |params, _| async move {
-// assert_eq!(
-// params.text_document.uri,
-// lsp::Url::from_file_path("/file.rs").unwrap()
-// );
-// assert_eq!(params.options.tab_size, 8);
-// Ok(Some(vec![]))
-// })
-// .next()
-// .await;
-// cx.foreground().start_waiting();
-// save.await.unwrap();
-// }
+ jk
+ nlmo
+ "#
+ ));
-// #[gpui::test]
-// async fn test_range_format_during_save(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
+ cx.update_editor(|view, cx| {
+ view.add_selection_below(&Default::default(), cx);
+ });
-// let mut language = Language::new(
-// LanguageConfig {
-// name: "Rust".into(),
-// path_suffixes: vec!["rs".to_string()],
-// ..Default::default()
-// },
-// Some(tree_sitter_rust::language()),
-// );
-// let mut fake_servers = language
-// .set_fake_lsp_adapter(Arc::new(FakeLspAdapter {
-// capabilities: lsp::ServerCapabilities {
-// document_range_formatting_provider: Some(lsp::OneOf::Left(true)),
-// ..Default::default()
-// },
-// ..Default::default()
-// }))
-// .await;
+ cx.assert_editor_state(indoc!(
+ r#"abc
+ def«ˇg»hi
-// let fs = FakeFs::new(cx.background());
-// fs.insert_file("/file.rs", Default::default()).await;
+ jk
+ nlm«ˇo»
+ "#
+ ));
-// let project = Project::test(fs, ["/file.rs".as_ref()], cx).await;
-// project.update(cx, |project, _| project.languages().add(Arc::new(language)));
-// let buffer = project
-// .update(cx, |project, cx| project.open_local_buffer("/file.rs", cx))
-// .await
-// .unwrap();
+ cx.update_editor(|view, cx| {
+ view.add_selection_below(&Default::default(), cx);
+ });
-// cx.foreground().start_waiting();
-// let fake_server = fake_servers.next().await.unwrap();
+ cx.assert_editor_state(indoc!(
+ r#"abc
+ def«ˇg»hi
-// let buffer = cx.add_model(|cx| MultiBuffer::singleton(buffer, cx));
-// let editor = cx.add_window(|cx| build_editor(buffer, cx)).root(cx);
-// editor.update(cx, |editor, cx| editor.set_text("one\ntwo\nthree\n", cx));
-// assert!(cx.read(|cx| editor.is_dirty(cx)));
+ jk
+ nlm«ˇo»
+ "#
+ ));
-// let save = editor.update(cx, |editor, cx| editor.save(project.clone(), cx));
-// fake_server
-// .handle_request::<lsp::request::RangeFormatting, _, _>(move |params, _| async move {
-// assert_eq!(
-// params.text_document.uri,
-// lsp::Url::from_file_path("/file.rs").unwrap()
-// );
-// assert_eq!(params.options.tab_size, 4);
-// Ok(Some(vec![lsp::TextEdit::new(
-// lsp::Range::new(lsp::Position::new(0, 3), lsp::Position::new(1, 0)),
-// ", ".to_string(),
-// )]))
-// })
-// .next()
-// .await;
-// cx.foreground().start_waiting();
-// save.await.unwrap();
-// assert_eq!(
-// editor.read_with(cx, |editor, cx| editor.text(cx)),
-// "one, two\nthree\n"
-// );
-// assert!(!cx.read(|cx| editor.is_dirty(cx)));
+ cx.update_editor(|view, cx| {
+ view.add_selection_above(&Default::default(), cx);
+ });
-// editor.update(cx, |editor, cx| editor.set_text("one\ntwo\nthree\n", cx));
-// assert!(cx.read(|cx| editor.is_dirty(cx)));
+ cx.assert_editor_state(indoc!(
+ r#"abc
+ def«ˇg»hi
-// // Ensure we can still save even if formatting hangs.
-// fake_server.handle_request::<lsp::request::RangeFormatting, _, _>(
-// move |params, _| async move {
-// assert_eq!(
-// params.text_document.uri,
-// lsp::Url::from_file_path("/file.rs").unwrap()
-// );
-// futures::future::pending::<()>().await;
-// unreachable!()
-// },
-// );
-// let save = editor.update(cx, |editor, cx| editor.save(project.clone(), cx));
-// cx.foreground().advance_clock(super::FORMAT_TIMEOUT);
-// cx.foreground().start_waiting();
-// save.await.unwrap();
-// assert_eq!(
-// editor.read_with(cx, |editor, cx| editor.text(cx)),
-// "one\ntwo\nthree\n"
-// );
-// assert!(!cx.read(|cx| editor.is_dirty(cx)));
-
-// // Set rust language override and assert overridden tabsize is sent to language server
-// update_test_language_settings(cx, |settings| {
-// settings.languages.insert(
-// "Rust".into(),
-// LanguageSettingsContent {
-// tab_size: NonZeroU32::new(8),
-// ..Default::default()
-// },
-// );
-// });
+ jk
+ nlmo
+ "#
+ ));
-// let save = editor.update(cx, |editor, cx| editor.save(project.clone(), cx));
-// fake_server
-// .handle_request::<lsp::request::RangeFormatting, _, _>(move |params, _| async move {
-// assert_eq!(
-// params.text_document.uri,
-// lsp::Url::from_file_path("/file.rs").unwrap()
-// );
-// assert_eq!(params.options.tab_size, 8);
-// Ok(Some(vec![]))
-// })
-// .next()
-// .await;
-// cx.foreground().start_waiting();
-// save.await.unwrap();
-// }
+ cx.update_editor(|view, cx| {
+ view.add_selection_above(&Default::default(), cx);
+ });
-// #[gpui::test]
-// async fn test_document_format_manual_trigger(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |settings| {
-// settings.defaults.formatter = Some(language_settings::Formatter::LanguageServer)
-// });
+ cx.assert_editor_state(indoc!(
+ r#"abc
+ def«ˇg»hi
-// let mut language = Language::new(
-// LanguageConfig {
-// name: "Rust".into(),
-// path_suffixes: vec!["rs".to_string()],
-// // Enable Prettier formatting for the same buffer, and ensure
-// // LSP is called instead of Prettier.
-// prettier_parser_name: Some("test_parser".to_string()),
-// ..Default::default()
-// },
-// Some(tree_sitter_rust::language()),
-// );
-// let mut fake_servers = language
-// .set_fake_lsp_adapter(Arc::new(FakeLspAdapter {
-// capabilities: lsp::ServerCapabilities {
-// document_formatting_provider: Some(lsp::OneOf::Left(true)),
-// ..Default::default()
-// },
-// ..Default::default()
-// }))
-// .await;
+ jk
+ nlmo
+ "#
+ ));
-// let fs = FakeFs::new(cx.background());
-// fs.insert_file("/file.rs", Default::default()).await;
+ // Change selections again
+ cx.set_state(indoc!(
+ r#"a«bc
+ defgˇ»hi
-// let project = Project::test(fs, ["/file.rs".as_ref()], cx).await;
-// project.update(cx, |project, _| {
-// project.languages().add(Arc::new(language));
-// });
-// let buffer = project
-// .update(cx, |project, cx| project.open_local_buffer("/file.rs", cx))
-// .await
-// .unwrap();
+ jk
+ nlmo
+ "#
+ ));
-// cx.foreground().start_waiting();
-// let fake_server = fake_servers.next().await.unwrap();
+ cx.update_editor(|view, cx| {
+ view.add_selection_below(&Default::default(), cx);
+ });
-// let buffer = cx.add_model(|cx| MultiBuffer::singleton(buffer, cx));
-// let editor = cx.add_window(|cx| build_editor(buffer, cx)).root(cx);
-// editor.update(cx, |editor, cx| editor.set_text("one\ntwo\nthree\n", cx));
+ cx.assert_editor_state(indoc!(
+ r#"a«bcˇ»
+ d«efgˇ»hi
-// let format = editor.update(cx, |editor, cx| {
-// editor.perform_format(project.clone(), FormatTrigger::Manual, cx)
-// });
-// fake_server
-// .handle_request::<lsp::request::Formatting, _, _>(move |params, _| async move {
-// assert_eq!(
-// params.text_document.uri,
-// lsp::Url::from_file_path("/file.rs").unwrap()
-// );
-// assert_eq!(params.options.tab_size, 4);
-// Ok(Some(vec![lsp::TextEdit::new(
-// lsp::Range::new(lsp::Position::new(0, 3), lsp::Position::new(1, 0)),
-// ", ".to_string(),
-// )]))
-// })
-// .next()
-// .await;
-// cx.foreground().start_waiting();
-// format.await.unwrap();
-// assert_eq!(
-// editor.read_with(cx, |editor, cx| editor.text(cx)),
-// "one, two\nthree\n"
-// );
+ j«kˇ»
+ nlmo
+ "#
+ ));
-// editor.update(cx, |editor, cx| editor.set_text("one\ntwo\nthree\n", cx));
-// // Ensure we don't lock if formatting hangs.
-// fake_server.handle_request::<lsp::request::Formatting, _, _>(move |params, _| async move {
-// assert_eq!(
-// params.text_document.uri,
-// lsp::Url::from_file_path("/file.rs").unwrap()
-// );
-// futures::future::pending::<()>().await;
-// unreachable!()
-// });
-// let format = editor.update(cx, |editor, cx| {
-// editor.perform_format(project, FormatTrigger::Manual, cx)
-// });
-// cx.foreground().advance_clock(super::FORMAT_TIMEOUT);
-// cx.foreground().start_waiting();
-// format.await.unwrap();
-// assert_eq!(
-// editor.read_with(cx, |editor, cx| editor.text(cx)),
-// "one\ntwo\nthree\n"
-// );
-// }
+ cx.update_editor(|view, cx| {
+ view.add_selection_below(&Default::default(), cx);
+ });
+ cx.assert_editor_state(indoc!(
+ r#"a«bcˇ»
+ d«efgˇ»hi
+
+ j«kˇ»
+ n«lmoˇ»
+ "#
+ ));
+ cx.update_editor(|view, cx| {
+ view.add_selection_above(&Default::default(), cx);
+ });
-// #[gpui::test]
-// async fn test_concurrent_format_requests(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
+ cx.assert_editor_state(indoc!(
+ r#"a«bcˇ»
+ d«efgˇ»hi
-// let mut cx = EditorLspTestContext::new_rust(
-// lsp::ServerCapabilities {
-// document_formatting_provider: Some(lsp::OneOf::Left(true)),
-// ..Default::default()
-// },
-// cx,
-// )
-// .await;
+ j«kˇ»
+ nlmo
+ "#
+ ));
-// cx.set_state(indoc! {"
-// one.twoˇ
-// "});
+ // Change selections again
+ cx.set_state(indoc!(
+ r#"abc
+ d«ˇefghi
-// // The format request takes a long time. When it completes, it inserts
-// // a newline and an indent before the `.`
-// cx.lsp
-// .handle_request::<lsp::request::Formatting, _, _>(move |_, cx| {
-// let executor = cx.background();
-// async move {
-// executor.timer(Duration::from_millis(100)).await;
-// Ok(Some(vec![lsp::TextEdit {
-// range: lsp::Range::new(lsp::Position::new(0, 3), lsp::Position::new(0, 3)),
-// new_text: "\n ".into(),
-// }]))
-// }
-// });
+ jk
+ nlm»o
+ "#
+ ));
-// // Submit a format request.
-// let format_1 = cx
-// .update_editor(|editor, cx| editor.format(&Format, cx))
-// .unwrap();
-// cx.foreground().run_until_parked();
+ cx.update_editor(|view, cx| {
+ view.add_selection_above(&Default::default(), cx);
+ });
-// // Submit a second format request.
-// let format_2 = cx
-// .update_editor(|editor, cx| editor.format(&Format, cx))
-// .unwrap();
-// cx.foreground().run_until_parked();
+ cx.assert_editor_state(indoc!(
+ r#"a«ˇbc»
+ d«ˇef»ghi
-// // Wait for both format requests to complete
-// cx.foreground().advance_clock(Duration::from_millis(200));
-// cx.foreground().start_waiting();
-// format_1.await.unwrap();
-// cx.foreground().start_waiting();
-// format_2.await.unwrap();
+ j«ˇk»
+ n«ˇlm»o
+ "#
+ ));
-// // The formatting edits only happens once.
-// cx.assert_editor_state(indoc! {"
-// one
-// .twoˇ
-// "});
-// }
+ cx.update_editor(|view, cx| {
+ view.add_selection_below(&Default::default(), cx);
+ });
-// #[gpui::test]
-// async fn test_strip_whitespace_and_format_via_lsp(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |settings| {
-// settings.defaults.formatter = Some(language_settings::Formatter::Auto)
-// });
+ cx.assert_editor_state(indoc!(
+ r#"abc
+ d«ˇef»ghi
-// let mut cx = EditorLspTestContext::new_rust(
-// lsp::ServerCapabilities {
-// document_formatting_provider: Some(lsp::OneOf::Left(true)),
-// ..Default::default()
-// },
-// cx,
-// )
-// .await;
+ j«ˇk»
+ n«ˇlm»o
+ "#
+ ));
+}
-// // Set up a buffer white some trailing whitespace and no trailing newline.
-// cx.set_state(
-// &[
-// "one ", //
-// "twoˇ", //
-// "three ", //
-// "four", //
-// ]
-// .join("\n"),
-// );
+#[gpui::test]
+async fn test_select_next(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
-// // Submit a format request.
-// let format = cx
-// .update_editor(|editor, cx| editor.format(&Format, cx))
-// .unwrap();
+ let mut cx = EditorTestContext::new(cx).await;
+ cx.set_state("abc\nˇabc abc\ndefabc\nabc");
-// // Record which buffer changes have been sent to the language server
-// let buffer_changes = Arc::new(Mutex::new(Vec::new()));
-// cx.lsp
-// .handle_notification::<lsp::notification::DidChangeTextDocument, _>({
-// let buffer_changes = buffer_changes.clone();
-// move |params, _| {
-// buffer_changes.lock().extend(
-// params
-// .content_changes
-// .into_iter()
-// .map(|e| (e.range.unwrap(), e.text)),
-// );
-// }
-// });
+ cx.update_editor(|e, cx| e.select_next(&SelectNext::default(), cx))
+ .unwrap();
+ cx.assert_editor_state("abc\n«abcˇ» abc\ndefabc\nabc");
-// // Handle formatting requests to the language server.
-// cx.lsp.handle_request::<lsp::request::Formatting, _, _>({
-// let buffer_changes = buffer_changes.clone();
-// move |_, _| {
-// // When formatting is requested, trailing whitespace has already been stripped,
-// // and the trailing newline has already been added.
-// assert_eq!(
-// &buffer_changes.lock()[1..],
-// &[
-// (
-// lsp::Range::new(lsp::Position::new(0, 3), lsp::Position::new(0, 4)),
-// "".into()
-// ),
-// (
-// lsp::Range::new(lsp::Position::new(2, 5), lsp::Position::new(2, 6)),
-// "".into()
-// ),
-// (
-// lsp::Range::new(lsp::Position::new(3, 4), lsp::Position::new(3, 4)),
-// "\n".into()
-// ),
-// ]
-// );
+ cx.update_editor(|e, cx| e.select_next(&SelectNext::default(), cx))
+ .unwrap();
+ cx.assert_editor_state("abc\n«abcˇ» «abcˇ»\ndefabc\nabc");
-// // Insert blank lines between each line of the buffer.
-// async move {
-// Ok(Some(vec![
-// lsp::TextEdit {
-// range: lsp::Range::new(lsp::Position::new(1, 0), lsp::Position::new(1, 0)),
-// new_text: "\n".into(),
-// },
-// lsp::TextEdit {
-// range: lsp::Range::new(lsp::Position::new(2, 0), lsp::Position::new(2, 0)),
-// new_text: "\n".into(),
-// },
-// ]))
-// }
-// }
-// });
+ cx.update_editor(|view, cx| view.undo_selection(&UndoSelection, cx));
+ cx.assert_editor_state("abc\n«abcˇ» abc\ndefabc\nabc");
+
+ cx.update_editor(|view, cx| view.redo_selection(&RedoSelection, cx));
+ cx.assert_editor_state("abc\n«abcˇ» «abcˇ»\ndefabc\nabc");
+
+ cx.update_editor(|e, cx| e.select_next(&SelectNext::default(), cx))
+ .unwrap();
+ cx.assert_editor_state("abc\n«abcˇ» «abcˇ»\ndefabc\n«abcˇ»");
+
+ cx.update_editor(|e, cx| e.select_next(&SelectNext::default(), cx))
+ .unwrap();
+ cx.assert_editor_state("«abcˇ»\n«abcˇ» «abcˇ»\ndefabc\n«abcˇ»");
+}
+
+#[gpui::test]
+async fn test_select_previous(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+ {
+ // `Select previous` without a selection (selects wordwise)
+ let mut cx = EditorTestContext::new(cx).await;
+ cx.set_state("abc\nˇabc abc\ndefabc\nabc");
+
+ cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
+ .unwrap();
+ cx.assert_editor_state("abc\n«abcˇ» abc\ndefabc\nabc");
+
+ cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
+ .unwrap();
+ cx.assert_editor_state("«abcˇ»\n«abcˇ» abc\ndefabc\nabc");
+
+ cx.update_editor(|view, cx| view.undo_selection(&UndoSelection, cx));
+ cx.assert_editor_state("abc\n«abcˇ» abc\ndefabc\nabc");
+
+ cx.update_editor(|view, cx| view.redo_selection(&RedoSelection, cx));
+ cx.assert_editor_state("«abcˇ»\n«abcˇ» abc\ndefabc\nabc");
+
+ cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
+ .unwrap();
+ cx.assert_editor_state("«abcˇ»\n«abcˇ» abc\ndefabc\n«abcˇ»");
+
+ cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
+ .unwrap();
+ cx.assert_editor_state("«abcˇ»\n«abcˇ» «abcˇ»\ndefabc\n«abcˇ»");
+ }
+ {
+ // `Select previous` with a selection
+ let mut cx = EditorTestContext::new(cx).await;
+ cx.set_state("abc\n«ˇabc» abc\ndefabc\nabc");
+
+ cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
+ .unwrap();
+ cx.assert_editor_state("«abcˇ»\n«ˇabc» abc\ndefabc\nabc");
+
+ cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
+ .unwrap();
+ cx.assert_editor_state("«abcˇ»\n«ˇabc» abc\ndefabc\n«abcˇ»");
+
+ cx.update_editor(|view, cx| view.undo_selection(&UndoSelection, cx));
+ cx.assert_editor_state("«abcˇ»\n«ˇabc» abc\ndefabc\nabc");
+
+ cx.update_editor(|view, cx| view.redo_selection(&RedoSelection, cx));
+ cx.assert_editor_state("«abcˇ»\n«ˇabc» abc\ndefabc\n«abcˇ»");
+
+ cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
+ .unwrap();
+ cx.assert_editor_state("«abcˇ»\n«ˇabc» abc\ndef«abcˇ»\n«abcˇ»");
+
+ cx.update_editor(|e, cx| e.select_previous(&SelectPrevious::default(), cx))
+ .unwrap();
+ cx.assert_editor_state("«abcˇ»\n«ˇabc» «abcˇ»\ndef«abcˇ»\n«abcˇ»");
+ }
+}
-// // After formatting the buffer, the trailing whitespace is stripped,
-// // a newline is appended, and the edits provided by the language server
-// // have been applied.
-// format.await.unwrap();
-// cx.assert_editor_state(
-// &[
-// "one", //
-// "", //
-// "twoˇ", //
-// "", //
-// "three", //
-// "four", //
-// "", //
-// ]
-// .join("\n"),
-// );
+#[gpui::test]
+async fn test_select_larger_smaller_syntax_node(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
-// // Undoing the formatting undoes the trailing whitespace removal, the
-// // trailing newline, and the LSP edits.
-// cx.update_buffer(|buffer, cx| buffer.undo(cx));
-// cx.assert_editor_state(
-// &[
-// "one ", //
-// "twoˇ", //
-// "three ", //
-// "four", //
-// ]
-// .join("\n"),
-// );
-// }
+ let language = Arc::new(Language::new(
+ LanguageConfig::default(),
+ Some(tree_sitter_rust::language()),
+ ));
-// #[gpui::test]
-// async fn test_completion(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
+ let text = r#"
+ use mod1::mod2::{mod3, mod4};
-// let mut cx = EditorLspTestContext::new_rust(
-// lsp::ServerCapabilities {
-// completion_provider: Some(lsp::CompletionOptions {
-// trigger_characters: Some(vec![".".to_string(), ":".to_string()]),
-// resolve_provider: Some(true),
-// ..Default::default()
-// }),
-// ..Default::default()
-// },
-// cx,
-// )
-// .await;
+ fn fn_1(param1: bool, param2: &str) {
+ let var1 = "text";
+ }
+ "#
+ .unindent();
-// cx.set_state(indoc! {"
-// oneˇ
-// two
-// three
-// "});
-// cx.simulate_keystroke(".");
-// handle_completion_request(
-// &mut cx,
-// indoc! {"
-// one.|<>
-// two
-// three
-// "},
-// vec!["first_completion", "second_completion"],
-// )
-// .await;
-// cx.condition(|editor, _| editor.context_menu_visible())
-// .await;
-// let apply_additional_edits = cx.update_editor(|editor, cx| {
-// editor.context_menu_next(&Default::default(), cx);
-// editor
-// .confirm_completion(&ConfirmCompletion::default(), cx)
-// .unwrap()
-// });
-// cx.assert_editor_state(indoc! {"
-// one.second_completionˇ
-// two
-// three
-// "});
+ let buffer = cx.build_model(|cx| {
+ Buffer::new(0, cx.entity_id().as_u64(), text).with_language(language, cx)
+ });
+ let buffer = cx.build_model(|cx| MultiBuffer::singleton(buffer, cx));
+ let (view, mut cx) = cx.add_window_view(|cx| build_editor(buffer, cx));
+
+ view.condition::<crate::Event>(&cx, |view, cx| !view.buffer.read(cx).is_parsing(cx))
+ .await;
+
+ view.update(&mut cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ DisplayPoint::new(0, 25)..DisplayPoint::new(0, 25),
+ DisplayPoint::new(2, 24)..DisplayPoint::new(2, 12),
+ DisplayPoint::new(3, 18)..DisplayPoint::new(3, 18),
+ ]);
+ });
+ view.select_larger_syntax_node(&SelectLargerSyntaxNode, cx);
+ });
+ assert_eq!(
+ view.update(&mut cx, |view, cx| { view.selections.display_ranges(cx) }),
+ &[
+ DisplayPoint::new(0, 23)..DisplayPoint::new(0, 27),
+ DisplayPoint::new(2, 35)..DisplayPoint::new(2, 7),
+ DisplayPoint::new(3, 15)..DisplayPoint::new(3, 21),
+ ]
+ );
+
+ view.update(&mut cx, |view, cx| {
+ view.select_larger_syntax_node(&SelectLargerSyntaxNode, cx);
+ });
+ assert_eq!(
+ view.update(&mut cx, |view, cx| view.selections.display_ranges(cx)),
+ &[
+ DisplayPoint::new(0, 16)..DisplayPoint::new(0, 28),
+ DisplayPoint::new(4, 1)..DisplayPoint::new(2, 0),
+ ]
+ );
+
+ view.update(&mut cx, |view, cx| {
+ view.select_larger_syntax_node(&SelectLargerSyntaxNode, cx);
+ });
+ assert_eq!(
+ view.update(&mut cx, |view, cx| view.selections.display_ranges(cx)),
+ &[DisplayPoint::new(5, 0)..DisplayPoint::new(0, 0)]
+ );
+
+ // Trying to expand the selected syntax node one more time has no effect.
+ view.update(&mut cx, |view, cx| {
+ view.select_larger_syntax_node(&SelectLargerSyntaxNode, cx);
+ });
+ assert_eq!(
+ view.update(&mut cx, |view, cx| view.selections.display_ranges(cx)),
+ &[DisplayPoint::new(5, 0)..DisplayPoint::new(0, 0)]
+ );
-// handle_resolve_completion_request(
-// &mut cx,
-// Some(vec![
-// (
-// //This overlaps with the primary completion edit which is
-// //misbehavior from the LSP spec, test that we filter it out
-// indoc! {"
-// one.second_ˇcompletion
-// two
-// threeˇ
-// "},
-// "overlapping additional edit",
-// ),
-// (
-// indoc! {"
-// one.second_completion
-// two
-// threeˇ
-// "},
-// "\nadditional edit",
-// ),
-// ]),
-// )
-// .await;
-// apply_additional_edits.await.unwrap();
-// cx.assert_editor_state(indoc! {"
-// one.second_completionˇ
-// two
-// three
-// additional edit
-// "});
+ view.update(&mut cx, |view, cx| {
+ view.select_smaller_syntax_node(&SelectSmallerSyntaxNode, cx);
+ });
+ assert_eq!(
+ view.update(&mut cx, |view, cx| view.selections.display_ranges(cx)),
+ &[
+ DisplayPoint::new(0, 16)..DisplayPoint::new(0, 28),
+ DisplayPoint::new(4, 1)..DisplayPoint::new(2, 0),
+ ]
+ );
+
+ view.update(&mut cx, |view, cx| {
+ view.select_smaller_syntax_node(&SelectSmallerSyntaxNode, cx);
+ });
+ assert_eq!(
+ view.update(&mut cx, |view, cx| view.selections.display_ranges(cx)),
+ &[
+ DisplayPoint::new(0, 23)..DisplayPoint::new(0, 27),
+ DisplayPoint::new(2, 35)..DisplayPoint::new(2, 7),
+ DisplayPoint::new(3, 15)..DisplayPoint::new(3, 21),
+ ]
+ );
+
+ view.update(&mut cx, |view, cx| {
+ view.select_smaller_syntax_node(&SelectSmallerSyntaxNode, cx);
+ });
+ assert_eq!(
+ view.update(&mut cx, |view, cx| view.selections.display_ranges(cx)),
+ &[
+ DisplayPoint::new(0, 25)..DisplayPoint::new(0, 25),
+ DisplayPoint::new(2, 24)..DisplayPoint::new(2, 12),
+ DisplayPoint::new(3, 18)..DisplayPoint::new(3, 18),
+ ]
+ );
+
+ // Trying to shrink the selected syntax node one more time has no effect.
+ view.update(&mut cx, |view, cx| {
+ view.select_smaller_syntax_node(&SelectSmallerSyntaxNode, cx);
+ });
+ assert_eq!(
+ view.update(&mut cx, |view, cx| view.selections.display_ranges(cx)),
+ &[
+ DisplayPoint::new(0, 25)..DisplayPoint::new(0, 25),
+ DisplayPoint::new(2, 24)..DisplayPoint::new(2, 12),
+ DisplayPoint::new(3, 18)..DisplayPoint::new(3, 18),
+ ]
+ );
+
+ // Ensure that we keep expanding the selection if the larger selection starts or ends within
+ // a fold.
+ view.update(&mut cx, |view, cx| {
+ view.fold_ranges(
+ vec![
+ Point::new(0, 21)..Point::new(0, 24),
+ Point::new(3, 20)..Point::new(3, 22),
+ ],
+ true,
+ cx,
+ );
+ view.select_larger_syntax_node(&SelectLargerSyntaxNode, cx);
+ });
+ assert_eq!(
+ view.update(&mut cx, |view, cx| view.selections.display_ranges(cx)),
+ &[
+ DisplayPoint::new(0, 16)..DisplayPoint::new(0, 28),
+ DisplayPoint::new(2, 35)..DisplayPoint::new(2, 7),
+ DisplayPoint::new(3, 4)..DisplayPoint::new(3, 23),
+ ]
+ );
+}
-// cx.set_state(indoc! {"
-// one.second_completion
-// twoˇ
-// threeˇ
-// additional edit
-// "});
-// cx.simulate_keystroke(" ");
-// assert!(cx.editor(|e, _| e.context_menu.read().is_none()));
-// cx.simulate_keystroke("s");
-// assert!(cx.editor(|e, _| e.context_menu.read().is_none()));
+#[gpui::test]
+async fn test_autoindent_selections(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let language = Arc::new(
+ Language::new(
+ LanguageConfig {
+ brackets: BracketPairConfig {
+ pairs: vec![
+ BracketPair {
+ start: "{".to_string(),
+ end: "}".to_string(),
+ close: false,
+ newline: true,
+ },
+ BracketPair {
+ start: "(".to_string(),
+ end: ")".to_string(),
+ close: false,
+ newline: true,
+ },
+ ],
+ ..Default::default()
+ },
+ ..Default::default()
+ },
+ Some(tree_sitter_rust::language()),
+ )
+ .with_indents_query(
+ r#"
+ (_ "(" ")" @end) @indent
+ (_ "{" "}" @end) @indent
+ "#,
+ )
+ .unwrap(),
+ );
+
+ let text = "fn a() {}";
+
+ let buffer = cx.build_model(|cx| {
+ Buffer::new(0, cx.entity_id().as_u64(), text).with_language(language, cx)
+ });
+ let buffer = cx.build_model(|cx| MultiBuffer::singleton(buffer, cx));
+ let (editor, mut cx) = cx.add_window_view(|cx| build_editor(buffer, cx));
+ let cx = &mut cx;
+ editor
+ .condition::<crate::Event>(cx, |editor, cx| !editor.buffer.read(cx).is_parsing(cx))
+ .await;
+
+ editor.update(cx, |editor, cx| {
+ editor.change_selections(None, cx, |s| s.select_ranges([5..5, 8..8, 9..9]));
+ editor.newline(&Newline, cx);
+ assert_eq!(editor.text(cx), "fn a(\n \n) {\n \n}\n");
+ assert_eq!(
+ editor.selections.ranges(cx),
+ &[
+ Point::new(1, 4)..Point::new(1, 4),
+ Point::new(3, 4)..Point::new(3, 4),
+ Point::new(5, 0)..Point::new(5, 0)
+ ]
+ );
+ });
+}
-// cx.assert_editor_state(indoc! {"
-// one.second_completion
-// two sˇ
-// three sˇ
-// additional edit
-// "});
-// handle_completion_request(
-// &mut cx,
-// indoc! {"
-// one.second_completion
-// two s
-// three <s|>
-// additional edit
-// "},
-// vec!["fourth_completion", "fifth_completion", "sixth_completion"],
-// )
-// .await;
-// cx.condition(|editor, _| editor.context_menu_visible())
-// .await;
+#[gpui::test]
+async fn test_autoclose_pairs(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut cx = EditorTestContext::new(cx).await;
+
+ let language = Arc::new(Language::new(
+ LanguageConfig {
+ brackets: BracketPairConfig {
+ pairs: vec![
+ BracketPair {
+ start: "{".to_string(),
+ end: "}".to_string(),
+ close: true,
+ newline: true,
+ },
+ BracketPair {
+ start: "(".to_string(),
+ end: ")".to_string(),
+ close: true,
+ newline: true,
+ },
+ BracketPair {
+ start: "/*".to_string(),
+ end: " */".to_string(),
+ close: true,
+ newline: true,
+ },
+ BracketPair {
+ start: "[".to_string(),
+ end: "]".to_string(),
+ close: false,
+ newline: true,
+ },
+ BracketPair {
+ start: "\"".to_string(),
+ end: "\"".to_string(),
+ close: true,
+ newline: false,
+ },
+ ],
+ ..Default::default()
+ },
+ autoclose_before: "})]".to_string(),
+ ..Default::default()
+ },
+ Some(tree_sitter_rust::language()),
+ ));
+
+ let registry = Arc::new(LanguageRegistry::test());
+ registry.add(language.clone());
+ cx.update_buffer(|buffer, cx| {
+ buffer.set_language_registry(registry);
+ buffer.set_language(Some(language), cx);
+ });
-// cx.simulate_keystroke("i");
+ cx.set_state(
+ &r#"
+ 🏀ˇ
+ εˇ
+ ❤️ˇ
+ "#
+ .unindent(),
+ );
+
+ // autoclose multiple nested brackets at multiple cursors
+ cx.update_editor(|view, cx| {
+ view.handle_input("{", cx);
+ view.handle_input("{", cx);
+ view.handle_input("{", cx);
+ });
+ cx.assert_editor_state(
+ &"
+ 🏀{{{ˇ}}}
+ ε{{{ˇ}}}
+ ❤️{{{ˇ}}}
+ "
+ .unindent(),
+ );
+
+ // insert a different closing bracket
+ cx.update_editor(|view, cx| {
+ view.handle_input(")", cx);
+ });
+ cx.assert_editor_state(
+ &"
+ 🏀{{{)ˇ}}}
+ ε{{{)ˇ}}}
+ ❤️{{{)ˇ}}}
+ "
+ .unindent(),
+ );
+
+ // skip over the auto-closed brackets when typing a closing bracket
+ cx.update_editor(|view, cx| {
+ view.move_right(&MoveRight, cx);
+ view.handle_input("}", cx);
+ view.handle_input("}", cx);
+ view.handle_input("}", cx);
+ });
+ cx.assert_editor_state(
+ &"
+ 🏀{{{)}}}}ˇ
+ ε{{{)}}}}ˇ
+ ❤️{{{)}}}}ˇ
+ "
+ .unindent(),
+ );
+
+ // autoclose multi-character pairs
+ cx.set_state(
+ &"
+ ˇ
+ ˇ
+ "
+ .unindent(),
+ );
+ cx.update_editor(|view, cx| {
+ view.handle_input("/", cx);
+ view.handle_input("*", cx);
+ });
+ cx.assert_editor_state(
+ &"
+ /*ˇ */
+ /*ˇ */
+ "
+ .unindent(),
+ );
+
+ // one cursor autocloses a multi-character pair, one cursor
+ // does not autoclose.
+ cx.set_state(
+ &"
+ /ˇ
+ ˇ
+ "
+ .unindent(),
+ );
+ cx.update_editor(|view, cx| view.handle_input("*", cx));
+ cx.assert_editor_state(
+ &"
+ /*ˇ */
+ *ˇ
+ "
+ .unindent(),
+ );
+
+ // Don't autoclose if the next character isn't whitespace and isn't
+ // listed in the language's "autoclose_before" section.
+ cx.set_state("ˇa b");
+ cx.update_editor(|view, cx| view.handle_input("{", cx));
+ cx.assert_editor_state("{ˇa b");
+
+ // Don't autoclose if `close` is false for the bracket pair
+ cx.set_state("ˇ");
+ cx.update_editor(|view, cx| view.handle_input("[", cx));
+ cx.assert_editor_state("[ˇ");
+
+ // Surround with brackets if text is selected
+ cx.set_state("«aˇ» b");
+ cx.update_editor(|view, cx| view.handle_input("{", cx));
+ cx.assert_editor_state("{«aˇ»} b");
+
+ // Autclose pair where the start and end characters are the same
+ cx.set_state("aˇ");
+ cx.update_editor(|view, cx| view.handle_input("\"", cx));
+ cx.assert_editor_state("a\"ˇ\"");
+ cx.update_editor(|view, cx| view.handle_input("\"", cx));
+ cx.assert_editor_state("a\"\"ˇ");
+}
-// handle_completion_request(
-// &mut cx,
-// indoc! {"
-// one.second_completion
-// two si
-// three <si|>
-// additional edit
-// "},
-// vec!["fourth_completion", "fifth_completion", "sixth_completion"],
-// )
-// .await;
-// cx.condition(|editor, _| editor.context_menu_visible())
-// .await;
+#[gpui::test]
+async fn test_autoclose_with_embedded_language(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut cx = EditorTestContext::new(cx).await;
+
+ let html_language = Arc::new(
+ Language::new(
+ LanguageConfig {
+ name: "HTML".into(),
+ brackets: BracketPairConfig {
+ pairs: vec![
+ BracketPair {
+ start: "<".into(),
+ end: ">".into(),
+ close: true,
+ ..Default::default()
+ },
+ BracketPair {
+ start: "{".into(),
+ end: "}".into(),
+ close: true,
+ ..Default::default()
+ },
+ BracketPair {
+ start: "(".into(),
+ end: ")".into(),
+ close: true,
+ ..Default::default()
+ },
+ ],
+ ..Default::default()
+ },
+ autoclose_before: "})]>".into(),
+ ..Default::default()
+ },
+ Some(tree_sitter_html::language()),
+ )
+ .with_injection_query(
+ r#"
+ (script_element
+ (raw_text) @content
+ (#set! "language" "javascript"))
+ "#,
+ )
+ .unwrap(),
+ );
+
+ let javascript_language = Arc::new(Language::new(
+ LanguageConfig {
+ name: "JavaScript".into(),
+ brackets: BracketPairConfig {
+ pairs: vec![
+ BracketPair {
+ start: "/*".into(),
+ end: " */".into(),
+ close: true,
+ ..Default::default()
+ },
+ BracketPair {
+ start: "{".into(),
+ end: "}".into(),
+ close: true,
+ ..Default::default()
+ },
+ BracketPair {
+ start: "(".into(),
+ end: ")".into(),
+ close: true,
+ ..Default::default()
+ },
+ ],
+ ..Default::default()
+ },
+ autoclose_before: "})]>".into(),
+ ..Default::default()
+ },
+ Some(tree_sitter_typescript::language_tsx()),
+ ));
+
+ let registry = Arc::new(LanguageRegistry::test());
+ registry.add(html_language.clone());
+ registry.add(javascript_language.clone());
+
+ cx.update_buffer(|buffer, cx| {
+ buffer.set_language_registry(registry);
+ buffer.set_language(Some(html_language), cx);
+ });
-// let apply_additional_edits = cx.update_editor(|editor, cx| {
-// editor
-// .confirm_completion(&ConfirmCompletion::default(), cx)
-// .unwrap()
-// });
-// cx.assert_editor_state(indoc! {"
-// one.second_completion
-// two sixth_completionˇ
-// three sixth_completionˇ
-// additional edit
-// "});
+ cx.set_state(
+ &r#"
+ <body>ˇ
+ <script>
+ var x = 1;ˇ
+ </script>
+ </body>ˇ
+ "#
+ .unindent(),
+ );
+
+ // Precondition: different languages are active at different locations.
+ cx.update_editor(|editor, cx| {
+ let snapshot = editor.snapshot(cx);
+ let cursors = editor.selections.ranges::<usize>(cx);
+ let languages = cursors
+ .iter()
+ .map(|c| snapshot.language_at(c.start).unwrap().name())
+ .collect::<Vec<_>>();
+ assert_eq!(
+ languages,
+ &["HTML".into(), "JavaScript".into(), "HTML".into()]
+ );
+ });
-// handle_resolve_completion_request(&mut cx, None).await;
-// apply_additional_edits.await.unwrap();
+ // Angle brackets autoclose in HTML, but not JavaScript.
+ cx.update_editor(|editor, cx| {
+ editor.handle_input("<", cx);
+ editor.handle_input("a", cx);
+ });
+ cx.assert_editor_state(
+ &r#"
+ <body><aˇ>
+ <script>
+ var x = 1;<aˇ
+ </script>
+ </body><aˇ>
+ "#
+ .unindent(),
+ );
+
+ // Curly braces and parens autoclose in both HTML and JavaScript.
+ cx.update_editor(|editor, cx| {
+ editor.handle_input(" b=", cx);
+ editor.handle_input("{", cx);
+ editor.handle_input("c", cx);
+ editor.handle_input("(", cx);
+ });
+ cx.assert_editor_state(
+ &r#"
+ <body><a b={c(ˇ)}>
+ <script>
+ var x = 1;<a b={c(ˇ)}
+ </script>
+ </body><a b={c(ˇ)}>
+ "#
+ .unindent(),
+ );
+
+ // Brackets that were already autoclosed are skipped.
+ cx.update_editor(|editor, cx| {
+ editor.handle_input(")", cx);
+ editor.handle_input("d", cx);
+ editor.handle_input("}", cx);
+ });
+ cx.assert_editor_state(
+ &r#"
+ <body><a b={c()d}ˇ>
+ <script>
+ var x = 1;<a b={c()d}ˇ
+ </script>
+ </body><a b={c()d}ˇ>
+ "#
+ .unindent(),
+ );
+ cx.update_editor(|editor, cx| {
+ editor.handle_input(">", cx);
+ });
+ cx.assert_editor_state(
+ &r#"
+ <body><a b={c()d}>ˇ
+ <script>
+ var x = 1;<a b={c()d}>ˇ
+ </script>
+ </body><a b={c()d}>ˇ
+ "#
+ .unindent(),
+ );
+
+ // Reset
+ cx.set_state(
+ &r#"
+ <body>ˇ
+ <script>
+ var x = 1;ˇ
+ </script>
+ </body>ˇ
+ "#
+ .unindent(),
+ );
+
+ cx.update_editor(|editor, cx| {
+ editor.handle_input("<", cx);
+ });
+ cx.assert_editor_state(
+ &r#"
+ <body><ˇ>
+ <script>
+ var x = 1;<ˇ
+ </script>
+ </body><ˇ>
+ "#
+ .unindent(),
+ );
+
+ // When backspacing, the closing angle brackets are removed.
+ cx.update_editor(|editor, cx| {
+ editor.backspace(&Backspace, cx);
+ });
+ cx.assert_editor_state(
+ &r#"
+ <body>ˇ
+ <script>
+ var x = 1;ˇ
+ </script>
+ </body>ˇ
+ "#
+ .unindent(),
+ );
+
+ // Block comments autoclose in JavaScript, but not HTML.
+ cx.update_editor(|editor, cx| {
+ editor.handle_input("/", cx);
+ editor.handle_input("*", cx);
+ });
+ cx.assert_editor_state(
+ &r#"
+ <body>/*ˇ
+ <script>
+ var x = 1;/*ˇ */
+ </script>
+ </body>/*ˇ
+ "#
+ .unindent(),
+ );
+}
-// cx.update(|cx| {
-// cx.update_global::<SettingsStore, _, _>(|settings, cx| {
-// settings.update_user_settings::<EditorSettings>(cx, |settings| {
-// settings.show_completions_on_input = Some(false);
-// });
-// })
-// });
-// cx.set_state("editorˇ");
-// cx.simulate_keystroke(".");
-// assert!(cx.editor(|e, _| e.context_menu.read().is_none()));
-// cx.simulate_keystroke("c");
-// cx.simulate_keystroke("l");
-// cx.simulate_keystroke("o");
-// cx.assert_editor_state("editor.cloˇ");
-// assert!(cx.editor(|e, _| e.context_menu.read().is_none()));
-// cx.update_editor(|editor, cx| {
-// editor.show_completions(&ShowCompletions, cx);
-// });
-// handle_completion_request(&mut cx, "editor.<clo|>", vec!["close", "clobber"]).await;
-// cx.condition(|editor, _| editor.context_menu_visible())
-// .await;
-// let apply_additional_edits = cx.update_editor(|editor, cx| {
-// editor
-// .confirm_completion(&ConfirmCompletion::default(), cx)
-// .unwrap()
-// });
-// cx.assert_editor_state("editor.closeˇ");
-// handle_resolve_completion_request(&mut cx, None).await;
-// apply_additional_edits.await.unwrap();
-// }
+#[gpui::test]
+async fn test_autoclose_with_overrides(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut cx = EditorTestContext::new(cx).await;
+
+ let rust_language = Arc::new(
+ Language::new(
+ LanguageConfig {
+ name: "Rust".into(),
+ brackets: serde_json::from_value(json!([
+ { "start": "{", "end": "}", "close": true, "newline": true },
+ { "start": "\"", "end": "\"", "close": true, "newline": false, "not_in": ["string"] },
+ ]))
+ .unwrap(),
+ autoclose_before: "})]>".into(),
+ ..Default::default()
+ },
+ Some(tree_sitter_rust::language()),
+ )
+ .with_override_query("(string_literal) @string")
+ .unwrap(),
+ );
+
+ let registry = Arc::new(LanguageRegistry::test());
+ registry.add(rust_language.clone());
+
+ cx.update_buffer(|buffer, cx| {
+ buffer.set_language_registry(registry);
+ buffer.set_language(Some(rust_language), cx);
+ });
-// #[gpui::test]
-// async fn test_toggle_comment(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
-// let mut cx = EditorTestContext::new(cx).await;
-// let language = Arc::new(Language::new(
-// LanguageConfig {
-// line_comment: Some("// ".into()),
-// ..Default::default()
-// },
-// Some(tree_sitter_rust::language()),
-// ));
-// cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
+ cx.set_state(
+ &r#"
+ let x = ˇ
+ "#
+ .unindent(),
+ );
-// // If multiple selections intersect a line, the line is only toggled once.
-// cx.set_state(indoc! {"
-// fn a() {
-// «//b();
-// ˇ»// «c();
-// //ˇ» d();
-// }
-// "});
+ // Inserting a quotation mark. A closing quotation mark is automatically inserted.
+ cx.update_editor(|editor, cx| {
+ editor.handle_input("\"", cx);
+ });
+ cx.assert_editor_state(
+ &r#"
+ let x = "ˇ"
+ "#
+ .unindent(),
+ );
+
+ // Inserting another quotation mark. The cursor moves across the existing
+ // automatically-inserted quotation mark.
+ cx.update_editor(|editor, cx| {
+ editor.handle_input("\"", cx);
+ });
+ cx.assert_editor_state(
+ &r#"
+ let x = ""ˇ
+ "#
+ .unindent(),
+ );
+
+ // Reset
+ cx.set_state(
+ &r#"
+ let x = ˇ
+ "#
+ .unindent(),
+ );
+
+ // Inserting a quotation mark inside of a string. A second quotation mark is not inserted.
+ cx.update_editor(|editor, cx| {
+ editor.handle_input("\"", cx);
+ editor.handle_input(" ", cx);
+ editor.move_left(&Default::default(), cx);
+ editor.handle_input("\\", cx);
+ editor.handle_input("\"", cx);
+ });
+ cx.assert_editor_state(
+ &r#"
+ let x = "\"ˇ "
+ "#
+ .unindent(),
+ );
+
+ // Inserting a closing quotation mark at the position of an automatically-inserted quotation
+ // mark. Nothing is inserted.
+ cx.update_editor(|editor, cx| {
+ editor.move_right(&Default::default(), cx);
+ editor.handle_input("\"", cx);
+ });
+ cx.assert_editor_state(
+ &r#"
+ let x = "\" "ˇ
+ "#
+ .unindent(),
+ );
+}
-// cx.update_editor(|e, cx| e.toggle_comments(&ToggleComments::default(), cx));
+#[gpui::test]
+async fn test_surround_with_pair(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let language = Arc::new(Language::new(
+ LanguageConfig {
+ brackets: BracketPairConfig {
+ pairs: vec![
+ BracketPair {
+ start: "{".to_string(),
+ end: "}".to_string(),
+ close: true,
+ newline: true,
+ },
+ BracketPair {
+ start: "/* ".to_string(),
+ end: "*/".to_string(),
+ close: true,
+ ..Default::default()
+ },
+ ],
+ ..Default::default()
+ },
+ ..Default::default()
+ },
+ Some(tree_sitter_rust::language()),
+ ));
+
+ let text = r#"
+ a
+ b
+ c
+ "#
+ .unindent();
+
+ let buffer = cx.build_model(|cx| {
+ Buffer::new(0, cx.entity_id().as_u64(), text).with_language(language, cx)
+ });
+ let buffer = cx.build_model(|cx| MultiBuffer::singleton(buffer, cx));
+ let (view, mut cx) = cx.add_window_view(|cx| build_editor(buffer, cx));
+ let cx = &mut cx;
+ view.condition::<crate::Event>(cx, |view, cx| !view.buffer.read(cx).is_parsing(cx))
+ .await;
+
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ DisplayPoint::new(0, 0)..DisplayPoint::new(0, 1),
+ DisplayPoint::new(1, 0)..DisplayPoint::new(1, 1),
+ DisplayPoint::new(2, 0)..DisplayPoint::new(2, 1),
+ ])
+ });
-// cx.assert_editor_state(indoc! {"
-// fn a() {
-// «b();
-// c();
-// ˇ» d();
-// }
-// "});
+ view.handle_input("{", cx);
+ view.handle_input("{", cx);
+ view.handle_input("{", cx);
+ assert_eq!(
+ view.text(cx),
+ "
+ {{{a}}}
+ {{{b}}}
+ {{{c}}}
+ "
+ .unindent()
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ [
+ DisplayPoint::new(0, 3)..DisplayPoint::new(0, 4),
+ DisplayPoint::new(1, 3)..DisplayPoint::new(1, 4),
+ DisplayPoint::new(2, 3)..DisplayPoint::new(2, 4)
+ ]
+ );
+
+ view.undo(&Undo, cx);
+ view.undo(&Undo, cx);
+ view.undo(&Undo, cx);
+ assert_eq!(
+ view.text(cx),
+ "
+ a
+ b
+ c
+ "
+ .unindent()
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ [
+ DisplayPoint::new(0, 0)..DisplayPoint::new(0, 1),
+ DisplayPoint::new(1, 0)..DisplayPoint::new(1, 1),
+ DisplayPoint::new(2, 0)..DisplayPoint::new(2, 1)
+ ]
+ );
+
+ // Ensure inserting the first character of a multi-byte bracket pair
+ // doesn't surround the selections with the bracket.
+ view.handle_input("/", cx);
+ assert_eq!(
+ view.text(cx),
+ "
+ /
+ /
+ /
+ "
+ .unindent()
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ [
+ DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
+ DisplayPoint::new(1, 1)..DisplayPoint::new(1, 1),
+ DisplayPoint::new(2, 1)..DisplayPoint::new(2, 1)
+ ]
+ );
+
+ view.undo(&Undo, cx);
+ assert_eq!(
+ view.text(cx),
+ "
+ a
+ b
+ c
+ "
+ .unindent()
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ [
+ DisplayPoint::new(0, 0)..DisplayPoint::new(0, 1),
+ DisplayPoint::new(1, 0)..DisplayPoint::new(1, 1),
+ DisplayPoint::new(2, 0)..DisplayPoint::new(2, 1)
+ ]
+ );
+
+ // Ensure inserting the last character of a multi-byte bracket pair
+ // doesn't surround the selections with the bracket.
+ view.handle_input("*", cx);
+ assert_eq!(
+ view.text(cx),
+ "
+ *
+ *
+ *
+ "
+ .unindent()
+ );
+ assert_eq!(
+ view.selections.display_ranges(cx),
+ [
+ DisplayPoint::new(0, 1)..DisplayPoint::new(0, 1),
+ DisplayPoint::new(1, 1)..DisplayPoint::new(1, 1),
+ DisplayPoint::new(2, 1)..DisplayPoint::new(2, 1)
+ ]
+ );
+ });
+}
-// // The comment prefix is inserted at the same column for every line in a
-// // selection.
-// cx.update_editor(|e, cx| e.toggle_comments(&ToggleComments::default(), cx));
+#[gpui::test]
+async fn test_delete_autoclose_pair(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let language = Arc::new(Language::new(
+ LanguageConfig {
+ brackets: BracketPairConfig {
+ pairs: vec![BracketPair {
+ start: "{".to_string(),
+ end: "}".to_string(),
+ close: true,
+ newline: true,
+ }],
+ ..Default::default()
+ },
+ autoclose_before: "}".to_string(),
+ ..Default::default()
+ },
+ Some(tree_sitter_rust::language()),
+ ));
+
+ let text = r#"
+ a
+ b
+ c
+ "#
+ .unindent();
+
+ let buffer = cx.build_model(|cx| {
+ Buffer::new(0, cx.entity_id().as_u64(), text).with_language(language, cx)
+ });
+ let buffer = cx.build_model(|cx| MultiBuffer::singleton(buffer, cx));
+ let (editor, mut cx) = cx.add_window_view(|cx| build_editor(buffer, cx));
+ let cx = &mut cx;
+ editor
+ .condition::<crate::Event>(cx, |view, cx| !view.buffer.read(cx).is_parsing(cx))
+ .await;
+
+ editor.update(cx, |editor, cx| {
+ editor.change_selections(None, cx, |s| {
+ s.select_ranges([
+ Point::new(0, 1)..Point::new(0, 1),
+ Point::new(1, 1)..Point::new(1, 1),
+ Point::new(2, 1)..Point::new(2, 1),
+ ])
+ });
-// cx.assert_editor_state(indoc! {"
-// fn a() {
-// // «b();
-// // c();
-// ˇ»// d();
-// }
-// "});
+ editor.handle_input("{", cx);
+ editor.handle_input("{", cx);
+ editor.handle_input("_", cx);
+ assert_eq!(
+ editor.text(cx),
+ "
+ a{{_}}
+ b{{_}}
+ c{{_}}
+ "
+ .unindent()
+ );
+ assert_eq!(
+ editor.selections.ranges::<Point>(cx),
+ [
+ Point::new(0, 4)..Point::new(0, 4),
+ Point::new(1, 4)..Point::new(1, 4),
+ Point::new(2, 4)..Point::new(2, 4)
+ ]
+ );
+
+ editor.backspace(&Default::default(), cx);
+ editor.backspace(&Default::default(), cx);
+ assert_eq!(
+ editor.text(cx),
+ "
+ a{}
+ b{}
+ c{}
+ "
+ .unindent()
+ );
+ assert_eq!(
+ editor.selections.ranges::<Point>(cx),
+ [
+ Point::new(0, 2)..Point::new(0, 2),
+ Point::new(1, 2)..Point::new(1, 2),
+ Point::new(2, 2)..Point::new(2, 2)
+ ]
+ );
+
+ editor.delete_to_previous_word_start(&Default::default(), cx);
+ assert_eq!(
+ editor.text(cx),
+ "
+ a
+ b
+ c
+ "
+ .unindent()
+ );
+ assert_eq!(
+ editor.selections.ranges::<Point>(cx),
+ [
+ Point::new(0, 1)..Point::new(0, 1),
+ Point::new(1, 1)..Point::new(1, 1),
+ Point::new(2, 1)..Point::new(2, 1)
+ ]
+ );
+ });
+}
-// // If a selection ends at the beginning of a line, that line is not toggled.
-// cx.set_selections_state(indoc! {"
-// fn a() {
-// // b();
-// «// c();
-// ˇ» // d();
-// }
-// "});
+// todo!(select_anchor_ranges)
+// #[gpui::test]
+// async fn test_snippets(cx: &mut gpui::TestAppContext) {
+// init_test(cx, |_| {});
-// cx.update_editor(|e, cx| e.toggle_comments(&ToggleComments::default(), cx));
+// let (text, insertion_ranges) = marked_text_ranges(
+// indoc! {"
+// a.ˇ b
+// a.ˇ b
+// a.ˇ b
+// "},
+// false,
+// );
-// cx.assert_editor_state(indoc! {"
-// fn a() {
-// // b();
-// «c();
-// ˇ» // d();
-// }
-// "});
+// let buffer = cx.update(|cx| MultiBuffer::build_simple(&text, cx));
+// let (editor, mut cx) = cx.add_window_view(|cx| build_editor(buffer, cx));
+// let cx = &mut cx;
-// // If a selection span a single line and is empty, the line is toggled.
-// cx.set_state(indoc! {"
-// fn a() {
-// a();
-// b();
-// ˇ
-// }
-// "});
+// editor.update(cx, |editor, cx| {
+// let snippet = Snippet::parse("f(${1:one}, ${2:two}, ${1:three})$0").unwrap();
-// cx.update_editor(|e, cx| e.toggle_comments(&ToggleComments::default(), cx));
+// editor
+// .insert_snippet(&insertion_ranges, snippet, cx)
+// .unwrap();
-// cx.assert_editor_state(indoc! {"
-// fn a() {
-// a();
-// b();
-// //•ˇ
+// fn assert(editor: &mut Editor, cx: &mut ViewContext<Editor>, marked_text: &str) {
+// let (expected_text, selection_ranges) = marked_text_ranges(marked_text, false);
+// assert_eq!(editor.text(cx), expected_text);
+// assert_eq!(editor.selections.ranges::<usize>(cx), selection_ranges);
// }
-// "});
-// // If a selection span multiple lines, empty lines are not toggled.
-// cx.set_state(indoc! {"
-// fn a() {
-// «a();
+// assert(
+// editor,
+// cx,
+// indoc! {"
+// a.f(«one», two, «three») b
+// a.f(«one», two, «three») b
+// a.f(«one», two, «three») b
+// "},
+// );
-// c();ˇ»
-// }
-// "});
+// // Can't move earlier than the first tab stop
+// assert!(!editor.move_to_prev_snippet_tabstop(cx));
+// assert(
+// editor,
+// cx,
+// indoc! {"
+// a.f(«one», two, «three») b
+// a.f(«one», two, «three») b
+// a.f(«one», two, «three») b
+// "},
+// );
-// cx.update_editor(|e, cx| e.toggle_comments(&ToggleComments::default(), cx));
+// assert!(editor.move_to_next_snippet_tabstop(cx));
+// assert(
+// editor,
+// cx,
+// indoc! {"
+// a.f(one, «two», three) b
+// a.f(one, «two», three) b
+// a.f(one, «two», three) b
+// "},
+// );
-// cx.assert_editor_state(indoc! {"
-// fn a() {
-// // «a();
+// editor.move_to_prev_snippet_tabstop(cx);
+// assert(
+// editor,
+// cx,
+// indoc! {"
+// a.f(«one», two, «three») b
+// a.f(«one», two, «three») b
+// a.f(«one», two, «three») b
+// "},
+// );
-// // c();ˇ»
-// }
-// "});
+// assert!(editor.move_to_next_snippet_tabstop(cx));
+// assert(
+// editor,
+// cx,
+// indoc! {"
+// a.f(one, «two», three) b
+// a.f(one, «two», three) b
+// a.f(one, «two», three) b
+// "},
+// );
+// assert!(editor.move_to_next_snippet_tabstop(cx));
+// assert(
+// editor,
+// cx,
+// indoc! {"
+// a.f(one, two, three)ˇ b
+// a.f(one, two, three)ˇ b
+// a.f(one, two, three)ˇ b
+// "},
+// );
+
+// // As soon as the last tab stop is reached, snippet state is gone
+// editor.move_to_prev_snippet_tabstop(cx);
+// assert(
+// editor,
+// cx,
+// indoc! {"
+// a.f(one, two, three)ˇ b
+// a.f(one, two, three)ˇ b
+// a.f(one, two, three)ˇ b
+// "},
+// );
+// });
// }
-// #[gpui::test]
-// async fn test_advance_downward_on_toggle_comment(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
+#[gpui::test]
+async fn test_document_format_during_save(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut language = Language::new(
+ LanguageConfig {
+ name: "Rust".into(),
+ path_suffixes: vec!["rs".to_string()],
+ ..Default::default()
+ },
+ Some(tree_sitter_rust::language()),
+ );
+ let mut fake_servers = language
+ .set_fake_lsp_adapter(Arc::new(FakeLspAdapter {
+ capabilities: lsp::ServerCapabilities {
+ document_formatting_provider: Some(lsp::OneOf::Left(true)),
+ ..Default::default()
+ },
+ ..Default::default()
+ }))
+ .await;
+
+ let fs = FakeFs::new(cx.executor());
+ fs.insert_file("/file.rs", Default::default()).await;
+
+ let project = Project::test(fs, ["/file.rs".as_ref()], cx).await;
+ project.update(cx, |project, _| project.languages().add(Arc::new(language)));
+ let buffer = project
+ .update(cx, |project, cx| project.open_local_buffer("/file.rs", cx))
+ .await
+ .unwrap();
+
+ cx.executor().start_waiting();
+ let fake_server = fake_servers.next().await.unwrap();
+
+ let buffer = cx.build_model(|cx| MultiBuffer::singleton(buffer, cx));
+ let (editor, mut cx) = cx.add_window_view(|cx| build_editor(buffer, cx));
+ let cx = &mut cx;
+ editor.update(cx, |editor, cx| editor.set_text("one\ntwo\nthree\n", cx));
+ assert!(cx.read(|cx| editor.is_dirty(cx)));
+
+ let save = editor
+ .update(cx, |editor, cx| editor.save(project.clone(), cx))
+ .unwrap();
+ fake_server
+ .handle_request::<lsp::request::Formatting, _, _>(move |params, _| async move {
+ assert_eq!(
+ params.text_document.uri,
+ lsp::Url::from_file_path("/file.rs").unwrap()
+ );
+ assert_eq!(params.options.tab_size, 4);
+ Ok(Some(vec![lsp::TextEdit::new(
+ lsp::Range::new(lsp::Position::new(0, 3), lsp::Position::new(1, 0)),
+ ", ".to_string(),
+ )]))
+ })
+ .next()
+ .await;
+ cx.executor().start_waiting();
+ let x = save.await;
+
+ assert_eq!(
+ editor.update(cx, |editor, cx| editor.text(cx)),
+ "one, two\nthree\n"
+ );
+ assert!(!cx.read(|cx| editor.is_dirty(cx)));
+
+ editor.update(cx, |editor, cx| editor.set_text("one\ntwo\nthree\n", cx));
+ assert!(cx.read(|cx| editor.is_dirty(cx)));
+
+ // Ensure we can still save even if formatting hangs.
+ fake_server.handle_request::<lsp::request::Formatting, _, _>(move |params, _| async move {
+ assert_eq!(
+ params.text_document.uri,
+ lsp::Url::from_file_path("/file.rs").unwrap()
+ );
+ futures::future::pending::<()>().await;
+ unreachable!()
+ });
+ let save = editor
+ .update(cx, |editor, cx| editor.save(project.clone(), cx))
+ .unwrap();
+ cx.executor().advance_clock(super::FORMAT_TIMEOUT);
+ cx.executor().start_waiting();
+ save.await;
+ assert_eq!(
+ editor.update(cx, |editor, cx| editor.text(cx)),
+ "one\ntwo\nthree\n"
+ );
+ assert!(!cx.read(|cx| editor.is_dirty(cx)));
+
+ // Set rust language override and assert overridden tabsize is sent to language server
+ update_test_language_settings(cx, |settings| {
+ settings.languages.insert(
+ "Rust".into(),
+ LanguageSettingsContent {
+ tab_size: NonZeroU32::new(8),
+ ..Default::default()
+ },
+ );
+ });
-// let language = Arc::new(Language::new(
-// LanguageConfig {
-// line_comment: Some("// ".into()),
-// ..Default::default()
-// },
-// Some(tree_sitter_rust::language()),
-// ));
+ let save = editor
+ .update(cx, |editor, cx| editor.save(project.clone(), cx))
+ .unwrap();
+ fake_server
+ .handle_request::<lsp::request::Formatting, _, _>(move |params, _| async move {
+ assert_eq!(
+ params.text_document.uri,
+ lsp::Url::from_file_path("/file.rs").unwrap()
+ );
+ assert_eq!(params.options.tab_size, 8);
+ Ok(Some(vec![]))
+ })
+ .next()
+ .await;
+ cx.executor().start_waiting();
+ save.await;
+}
-// let registry = Arc::new(LanguageRegistry::test());
-// registry.add(language.clone());
+#[gpui::test]
+async fn test_range_format_during_save(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut language = Language::new(
+ LanguageConfig {
+ name: "Rust".into(),
+ path_suffixes: vec!["rs".to_string()],
+ ..Default::default()
+ },
+ Some(tree_sitter_rust::language()),
+ );
+ let mut fake_servers = language
+ .set_fake_lsp_adapter(Arc::new(FakeLspAdapter {
+ capabilities: lsp::ServerCapabilities {
+ document_range_formatting_provider: Some(lsp::OneOf::Left(true)),
+ ..Default::default()
+ },
+ ..Default::default()
+ }))
+ .await;
+
+ let fs = FakeFs::new(cx.executor());
+ fs.insert_file("/file.rs", Default::default()).await;
+
+ let project = Project::test(fs, ["/file.rs".as_ref()], cx).await;
+ project.update(cx, |project, _| project.languages().add(Arc::new(language)));
+ let buffer = project
+ .update(cx, |project, cx| project.open_local_buffer("/file.rs", cx))
+ .await
+ .unwrap();
+
+ cx.executor().start_waiting();
+ let fake_server = fake_servers.next().await.unwrap();
+
+ let buffer = cx.build_model(|cx| MultiBuffer::singleton(buffer, cx));
+ let (editor, mut cx) = cx.add_window_view(|cx| build_editor(buffer, cx));
+ let cx = &mut cx;
+ editor.update(cx, |editor, cx| editor.set_text("one\ntwo\nthree\n", cx));
+ assert!(cx.read(|cx| editor.is_dirty(cx)));
+
+ let save = editor
+ .update(cx, |editor, cx| editor.save(project.clone(), cx))
+ .unwrap();
+ fake_server
+ .handle_request::<lsp::request::RangeFormatting, _, _>(move |params, _| async move {
+ assert_eq!(
+ params.text_document.uri,
+ lsp::Url::from_file_path("/file.rs").unwrap()
+ );
+ assert_eq!(params.options.tab_size, 4);
+ Ok(Some(vec![lsp::TextEdit::new(
+ lsp::Range::new(lsp::Position::new(0, 3), lsp::Position::new(1, 0)),
+ ", ".to_string(),
+ )]))
+ })
+ .next()
+ .await;
+ cx.executor().start_waiting();
+ save.await;
+ assert_eq!(
+ editor.update(cx, |editor, cx| editor.text(cx)),
+ "one, two\nthree\n"
+ );
+ assert!(!cx.read(|cx| editor.is_dirty(cx)));
+
+ editor.update(cx, |editor, cx| editor.set_text("one\ntwo\nthree\n", cx));
+ assert!(cx.read(|cx| editor.is_dirty(cx)));
+
+ // Ensure we can still save even if formatting hangs.
+ fake_server.handle_request::<lsp::request::RangeFormatting, _, _>(
+ move |params, _| async move {
+ assert_eq!(
+ params.text_document.uri,
+ lsp::Url::from_file_path("/file.rs").unwrap()
+ );
+ futures::future::pending::<()>().await;
+ unreachable!()
+ },
+ );
+ let save = editor
+ .update(cx, |editor, cx| editor.save(project.clone(), cx))
+ .unwrap();
+ cx.executor().advance_clock(super::FORMAT_TIMEOUT);
+ cx.executor().start_waiting();
+ save.await;
+ assert_eq!(
+ editor.update(cx, |editor, cx| editor.text(cx)),
+ "one\ntwo\nthree\n"
+ );
+ assert!(!cx.read(|cx| editor.is_dirty(cx)));
+
+ // Set rust language override and assert overridden tabsize is sent to language server
+ update_test_language_settings(cx, |settings| {
+ settings.languages.insert(
+ "Rust".into(),
+ LanguageSettingsContent {
+ tab_size: NonZeroU32::new(8),
+ ..Default::default()
+ },
+ );
+ });
-// let mut cx = EditorTestContext::new(cx).await;
-// cx.update_buffer(|buffer, cx| {
-// buffer.set_language_registry(registry);
-// buffer.set_language(Some(language), cx);
-// });
+ let save = editor
+ .update(cx, |editor, cx| editor.save(project.clone(), cx))
+ .unwrap();
+ fake_server
+ .handle_request::<lsp::request::RangeFormatting, _, _>(move |params, _| async move {
+ assert_eq!(
+ params.text_document.uri,
+ lsp::Url::from_file_path("/file.rs").unwrap()
+ );
+ assert_eq!(params.options.tab_size, 8);
+ Ok(Some(vec![]))
+ })
+ .next()
+ .await;
+ cx.executor().start_waiting();
+ save.await;
+}
-// let toggle_comments = &ToggleComments {
-// advance_downwards: true,
-// };
+#[gpui::test]
+async fn test_document_format_manual_trigger(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |settings| {
+ settings.defaults.formatter = Some(language_settings::Formatter::LanguageServer)
+ });
-// // Single cursor on one line -> advance
-// // Cursor moves horizontally 3 characters as well on non-blank line
-// cx.set_state(indoc!(
-// "fn a() {
-// ˇdog();
-// cat();
-// }"
-// ));
-// cx.update_editor(|editor, cx| {
-// editor.toggle_comments(toggle_comments, cx);
-// });
-// cx.assert_editor_state(indoc!(
-// "fn a() {
-// // dog();
-// catˇ();
-// }"
-// ));
+ let mut language = Language::new(
+ LanguageConfig {
+ name: "Rust".into(),
+ path_suffixes: vec!["rs".to_string()],
+ // Enable Prettier formatting for the same buffer, and ensure
+ // LSP is called instead of Prettier.
+ prettier_parser_name: Some("test_parser".to_string()),
+ ..Default::default()
+ },
+ Some(tree_sitter_rust::language()),
+ );
+ let mut fake_servers = language
+ .set_fake_lsp_adapter(Arc::new(FakeLspAdapter {
+ capabilities: lsp::ServerCapabilities {
+ document_formatting_provider: Some(lsp::OneOf::Left(true)),
+ ..Default::default()
+ },
+ ..Default::default()
+ }))
+ .await;
+
+ let fs = FakeFs::new(cx.executor());
+ fs.insert_file("/file.rs", Default::default()).await;
+
+ let project = Project::test(fs, ["/file.rs".as_ref()], cx).await;
+ project.update(cx, |project, _| {
+ project.languages().add(Arc::new(language));
+ });
+ let buffer = project
+ .update(cx, |project, cx| project.open_local_buffer("/file.rs", cx))
+ .await
+ .unwrap();
+
+ cx.executor().start_waiting();
+ let fake_server = fake_servers.next().await.unwrap();
+
+ let buffer = cx.build_model(|cx| MultiBuffer::singleton(buffer, cx));
+ let (editor, mut cx) = cx.add_window_view(|cx| build_editor(buffer, cx));
+ let cx = &mut cx;
+ editor.update(cx, |editor, cx| editor.set_text("one\ntwo\nthree\n", cx));
+
+ let format = editor
+ .update(cx, |editor, cx| {
+ editor.perform_format(project.clone(), FormatTrigger::Manual, cx)
+ })
+ .unwrap();
+ fake_server
+ .handle_request::<lsp::request::Formatting, _, _>(move |params, _| async move {
+ assert_eq!(
+ params.text_document.uri,
+ lsp::Url::from_file_path("/file.rs").unwrap()
+ );
+ assert_eq!(params.options.tab_size, 4);
+ Ok(Some(vec![lsp::TextEdit::new(
+ lsp::Range::new(lsp::Position::new(0, 3), lsp::Position::new(1, 0)),
+ ", ".to_string(),
+ )]))
+ })
+ .next()
+ .await;
+ cx.executor().start_waiting();
+ format.await;
+ assert_eq!(
+ editor.update(cx, |editor, cx| editor.text(cx)),
+ "one, two\nthree\n"
+ );
+
+ editor.update(cx, |editor, cx| editor.set_text("one\ntwo\nthree\n", cx));
+ // Ensure we don't lock if formatting hangs.
+ fake_server.handle_request::<lsp::request::Formatting, _, _>(move |params, _| async move {
+ assert_eq!(
+ params.text_document.uri,
+ lsp::Url::from_file_path("/file.rs").unwrap()
+ );
+ futures::future::pending::<()>().await;
+ unreachable!()
+ });
+ let format = editor
+ .update(cx, |editor, cx| {
+ editor.perform_format(project, FormatTrigger::Manual, cx)
+ })
+ .unwrap();
+ cx.executor().advance_clock(super::FORMAT_TIMEOUT);
+ cx.executor().start_waiting();
+ format.await;
+ assert_eq!(
+ editor.update(cx, |editor, cx| editor.text(cx)),
+ "one\ntwo\nthree\n"
+ );
+}
-// // Single selection on one line -> don't advance
-// cx.set_state(indoc!(
-// "fn a() {
-// «dog()ˇ»;
-// cat();
-// }"
-// ));
-// cx.update_editor(|editor, cx| {
-// editor.toggle_comments(toggle_comments, cx);
-// });
-// cx.assert_editor_state(indoc!(
-// "fn a() {
-// // «dog()ˇ»;
-// cat();
-// }"
-// ));
+#[gpui::test]
+async fn test_concurrent_format_requests(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut cx = EditorLspTestContext::new_rust(
+ lsp::ServerCapabilities {
+ document_formatting_provider: Some(lsp::OneOf::Left(true)),
+ ..Default::default()
+ },
+ cx,
+ )
+ .await;
+
+ cx.set_state(indoc! {"
+ one.twoˇ
+ "});
+
+ // The format request takes a long time. When it completes, it inserts
+ // a newline and an indent before the `.`
+ cx.lsp
+ .handle_request::<lsp::request::Formatting, _, _>(move |_, cx| {
+ let executor = cx.background_executor().clone();
+ async move {
+ executor.timer(Duration::from_millis(100)).await;
+ Ok(Some(vec![lsp::TextEdit {
+ range: lsp::Range::new(lsp::Position::new(0, 3), lsp::Position::new(0, 3)),
+ new_text: "\n ".into(),
+ }]))
+ }
+ });
-// // Multiple cursors on one line -> advance
-// cx.set_state(indoc!(
-// "fn a() {
-// ˇdˇog();
-// cat();
-// }"
-// ));
-// cx.update_editor(|editor, cx| {
-// editor.toggle_comments(toggle_comments, cx);
-// });
-// cx.assert_editor_state(indoc!(
-// "fn a() {
-// // dog();
-// catˇ(ˇ);
-// }"
-// ));
+ // Submit a format request.
+ let format_1 = cx
+ .update_editor(|editor, cx| editor.format(&Format, cx))
+ .unwrap();
+ cx.executor().run_until_parked();
+
+ // Submit a second format request.
+ let format_2 = cx
+ .update_editor(|editor, cx| editor.format(&Format, cx))
+ .unwrap();
+ cx.executor().run_until_parked();
+
+ // Wait for both format requests to complete
+ cx.executor().advance_clock(Duration::from_millis(200));
+ cx.executor().start_waiting();
+ format_1.await.unwrap();
+ cx.executor().start_waiting();
+ format_2.await.unwrap();
+
+ // The formatting edits only happens once.
+ cx.assert_editor_state(indoc! {"
+ one
+ .twoˇ
+ "});
+}
-// // Multiple cursors on one line, with selection -> don't advance
-// cx.set_state(indoc!(
-// "fn a() {
-// ˇdˇog«()ˇ»;
-// cat();
-// }"
-// ));
-// cx.update_editor(|editor, cx| {
-// editor.toggle_comments(toggle_comments, cx);
-// });
-// cx.assert_editor_state(indoc!(
-// "fn a() {
-// // ˇdˇog«()ˇ»;
-// cat();
-// }"
-// ));
+#[gpui::test]
+async fn test_strip_whitespace_and_format_via_lsp(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |settings| {
+ settings.defaults.formatter = Some(language_settings::Formatter::Auto)
+ });
-// // Single cursor on one line -> advance
-// // Cursor moves to column 0 on blank line
-// cx.set_state(indoc!(
-// "fn a() {
-// ˇdog();
+ let mut cx = EditorLspTestContext::new_rust(
+ lsp::ServerCapabilities {
+ document_formatting_provider: Some(lsp::OneOf::Left(true)),
+ ..Default::default()
+ },
+ cx,
+ )
+ .await;
+
+ // Set up a buffer white some trailing whitespace and no trailing newline.
+ cx.set_state(
+ &[
+ "one ", //
+ "twoˇ", //
+ "three ", //
+ "four", //
+ ]
+ .join("\n"),
+ );
+
+ // Submit a format request.
+ let format = cx
+ .update_editor(|editor, cx| editor.format(&Format, cx))
+ .unwrap();
+
+ // Record which buffer changes have been sent to the language server
+ let buffer_changes = Arc::new(Mutex::new(Vec::new()));
+ cx.lsp
+ .handle_notification::<lsp::notification::DidChangeTextDocument, _>({
+ let buffer_changes = buffer_changes.clone();
+ move |params, _| {
+ buffer_changes.lock().extend(
+ params
+ .content_changes
+ .into_iter()
+ .map(|e| (e.range.unwrap(), e.text)),
+ );
+ }
+ });
-// cat();
-// }"
-// ));
-// cx.update_editor(|editor, cx| {
-// editor.toggle_comments(toggle_comments, cx);
-// });
-// cx.assert_editor_state(indoc!(
-// "fn a() {
-// // dog();
-// ˇ
-// cat();
-// }"
-// ));
+ // Handle formatting requests to the language server.
+ cx.lsp.handle_request::<lsp::request::Formatting, _, _>({
+ let buffer_changes = buffer_changes.clone();
+ move |_, _| {
+ // When formatting is requested, trailing whitespace has already been stripped,
+ // and the trailing newline has already been added.
+ assert_eq!(
+ &buffer_changes.lock()[1..],
+ &[
+ (
+ lsp::Range::new(lsp::Position::new(0, 3), lsp::Position::new(0, 4)),
+ "".into()
+ ),
+ (
+ lsp::Range::new(lsp::Position::new(2, 5), lsp::Position::new(2, 6)),
+ "".into()
+ ),
+ (
+ lsp::Range::new(lsp::Position::new(3, 4), lsp::Position::new(3, 4)),
+ "\n".into()
+ ),
+ ]
+ );
+
+ // Insert blank lines between each line of the buffer.
+ async move {
+ Ok(Some(vec![
+ lsp::TextEdit {
+ range: lsp::Range::new(lsp::Position::new(1, 0), lsp::Position::new(1, 0)),
+ new_text: "\n".into(),
+ },
+ lsp::TextEdit {
+ range: lsp::Range::new(lsp::Position::new(2, 0), lsp::Position::new(2, 0)),
+ new_text: "\n".into(),
+ },
+ ]))
+ }
+ }
+ });
-// // Single cursor on one line -> advance
-// // Cursor starts and ends at column 0
-// cx.set_state(indoc!(
-// "fn a() {
-// ˇ dog();
-// cat();
-// }"
-// ));
-// cx.update_editor(|editor, cx| {
-// editor.toggle_comments(toggle_comments, cx);
-// });
-// cx.assert_editor_state(indoc!(
-// "fn a() {
-// // dog();
-// ˇ cat();
-// }"
-// ));
-// }
+ // After formatting the buffer, the trailing whitespace is stripped,
+ // a newline is appended, and the edits provided by the language server
+ // have been applied.
+ format.await.unwrap();
+ cx.assert_editor_state(
+ &[
+ "one", //
+ "", //
+ "twoˇ", //
+ "", //
+ "three", //
+ "four", //
+ "", //
+ ]
+ .join("\n"),
+ );
+
+ // Undoing the formatting undoes the trailing whitespace removal, the
+ // trailing newline, and the LSP edits.
+ cx.update_buffer(|buffer, cx| buffer.undo(cx));
+ cx.assert_editor_state(
+ &[
+ "one ", //
+ "twoˇ", //
+ "three ", //
+ "four", //
+ ]
+ .join("\n"),
+ );
+}
+//todo!(completion)
// #[gpui::test]
-// async fn test_toggle_block_comment(cx: &mut gpui::TestAppContext) {
+// async fn test_completion(cx: &mut gpui::TestAppContext) {
// init_test(cx, |_| {});
-// let mut cx = EditorTestContext::new(cx).await;
-
-// let html_language = Arc::new(
-// Language::new(
-// LanguageConfig {
-// name: "HTML".into(),
-// block_comment: Some(("<!-- ".into(), " -->".into())),
+// let mut cx = EditorLspTestContext::new_rust(
+// lsp::ServerCapabilities {
+// completion_provider: Some(lsp::CompletionOptions {
+// trigger_characters: Some(vec![".".to_string(), ":".to_string()]),
+// resolve_provider: Some(true),
// ..Default::default()
-// },
-// Some(tree_sitter_html::language()),
-// )
-// .with_injection_query(
-// r#"
-// (script_element
-// (raw_text) @content
-// (#set! "language" "javascript"))
-// "#,
-// )
-// .unwrap(),
-// );
-
-// let javascript_language = Arc::new(Language::new(
-// LanguageConfig {
-// name: "JavaScript".into(),
-// line_comment: Some("// ".into()),
+// }),
// ..Default::default()
// },
-// Some(tree_sitter_typescript::language_tsx()),
-// ));
-
-// let registry = Arc::new(LanguageRegistry::test());
-// registry.add(html_language.clone());
-// registry.add(javascript_language.clone());
+// cx,
+// )
+// .await;
-// cx.update_buffer(|buffer, cx| {
-// buffer.set_language_registry(registry);
-// buffer.set_language(Some(html_language), cx);
+// cx.set_state(indoc! {"
+// oneˇ
+// two
+// three
+// "});
+// cx.simulate_keystroke(".");
+// handle_completion_request(
+// &mut cx,
+// indoc! {"
+// one.|<>
+// two
+// three
+// "},
+// vec!["first_completion", "second_completion"],
+// )
+// .await;
+// cx.condition(|editor, _| editor.context_menu_visible())
+// .await;
+// let apply_additional_edits = cx.update_editor(|editor, cx| {
+// editor.context_menu_next(&Default::default(), cx);
+// editor
+// .confirm_completion(&ConfirmCompletion::default(), cx)
+// .unwrap()
// });
+// cx.assert_editor_state(indoc! {"
+// one.second_completionˇ
+// two
+// three
+// "});
-// // Toggle comments for empty selections
-// cx.set_state(
-// &r#"
-// <p>A</p>ˇ
-// <p>B</p>ˇ
-// <p>C</p>ˇ
-// "#
-// .unindent(),
-// );
-// cx.update_editor(|editor, cx| editor.toggle_comments(&ToggleComments::default(), cx));
-// cx.assert_editor_state(
-// &r#"
-// <!-- <p>A</p>ˇ -->
-// <!-- <p>B</p>ˇ -->
-// <!-- <p>C</p>ˇ -->
-// "#
-// .unindent(),
-// );
-// cx.update_editor(|editor, cx| editor.toggle_comments(&ToggleComments::default(), cx));
-// cx.assert_editor_state(
-// &r#"
-// <p>A</p>ˇ
-// <p>B</p>ˇ
-// <p>C</p>ˇ
-// "#
-// .unindent(),
-// );
-
-// // Toggle comments for mixture of empty and non-empty selections, where
-// // multiple selections occupy a given line.
-// cx.set_state(
-// &r#"
-// <p>A«</p>
-// <p>ˇ»B</p>ˇ
-// <p>C«</p>
-// <p>ˇ»D</p>ˇ
-// "#
-// .unindent(),
-// );
-
-// cx.update_editor(|editor, cx| editor.toggle_comments(&ToggleComments::default(), cx));
-// cx.assert_editor_state(
-// &r#"
-// <!-- <p>A«</p>
-// <p>ˇ»B</p>ˇ -->
-// <!-- <p>C«</p>
-// <p>ˇ»D</p>ˇ -->
-// "#
-// .unindent(),
-// );
-// cx.update_editor(|editor, cx| editor.toggle_comments(&ToggleComments::default(), cx));
-// cx.assert_editor_state(
-// &r#"
-// <p>A«</p>
-// <p>ˇ»B</p>ˇ
-// <p>C«</p>
-// <p>ˇ»D</p>ˇ
-// "#
-// .unindent(),
-// );
-
-// // Toggle comments when different languages are active for different
-// // selections.
-// cx.set_state(
-// &r#"
-// ˇ<script>
-// ˇvar x = new Y();
-// ˇ</script>
-// "#
-// .unindent(),
-// );
-// cx.foreground().run_until_parked();
-// cx.update_editor(|editor, cx| editor.toggle_comments(&ToggleComments::default(), cx));
-// cx.assert_editor_state(
-// &r#"
-// <!-- ˇ<script> -->
-// // ˇvar x = new Y();
-// <!-- ˇ</script> -->
-// "#
-// .unindent(),
-// );
-// }
-
-// #[gpui::test]
-// fn test_editing_disjoint_excerpts(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
+// handle_resolve_completion_request(
+// &mut cx,
+// Some(vec![
+// (
+// //This overlaps with the primary completion edit which is
+// //misbehavior from the LSP spec, test that we filter it out
+// indoc! {"
+// one.second_ˇcompletion
+// two
+// threeˇ
+// "},
+// "overlapping additional edit",
+// ),
+// (
+// indoc! {"
+// one.second_completion
+// two
+// threeˇ
+// "},
+// "\nadditional edit",
+// ),
+// ]),
+// )
+// .await;
+// apply_additional_edits.await.unwrap();
+// cx.assert_editor_state(indoc! {"
+// one.second_completionˇ
+// two
+// three
+// additional edit
+// "});
-// let buffer = cx.add_model(|cx| Buffer::new(0, cx.model_id() as u64, sample_text(3, 4, 'a')));
-// let multibuffer = cx.add_model(|cx| {
-// let mut multibuffer = MultiBuffer::new(0);
-// multibuffer.push_excerpts(
-// buffer.clone(),
-// [
-// ExcerptRange {
-// context: Point::new(0, 0)..Point::new(0, 4),
-// primary: None,
-// },
-// ExcerptRange {
-// context: Point::new(1, 0)..Point::new(1, 4),
-// primary: None,
-// },
-// ],
-// cx,
-// );
-// assert_eq!(multibuffer.read(cx).text(), "aaaa\nbbbb");
-// multibuffer
-// });
+// cx.set_state(indoc! {"
+// one.second_completion
+// twoˇ
+// threeˇ
+// additional edit
+// "});
+// cx.simulate_keystroke(" ");
+// assert!(cx.editor(|e, _| e.context_menu.read().is_none()));
+// cx.simulate_keystroke("s");
+// assert!(cx.editor(|e, _| e.context_menu.read().is_none()));
-// let view = cx.add_window(|cx| build_editor(multibuffer, cx)).root(cx);
-// view.update(cx, |view, cx| {
-// assert_eq!(view.text(cx), "aaaa\nbbbb");
-// view.change_selections(None, cx, |s| {
-// s.select_ranges([
-// Point::new(0, 0)..Point::new(0, 0),
-// Point::new(1, 0)..Point::new(1, 0),
-// ])
-// });
+// cx.assert_editor_state(indoc! {"
+// one.second_completion
+// two sˇ
+// three sˇ
+// additional edit
+// "});
+// handle_completion_request(
+// &mut cx,
+// indoc! {"
+// one.second_completion
+// two s
+// three <s|>
+// additional edit
+// "},
+// vec!["fourth_completion", "fifth_completion", "sixth_completion"],
+// )
+// .await;
+// cx.condition(|editor, _| editor.context_menu_visible())
+// .await;
-// view.handle_input("X", cx);
-// assert_eq!(view.text(cx), "Xaaaa\nXbbbb");
-// assert_eq!(
-// view.selections.ranges(cx),
-// [
-// Point::new(0, 1)..Point::new(0, 1),
-// Point::new(1, 1)..Point::new(1, 1),
-// ]
-// );
+// cx.simulate_keystroke("i");
-// // Ensure the cursor's head is respected when deleting across an excerpt boundary.
-// view.change_selections(None, cx, |s| {
-// s.select_ranges([Point::new(0, 2)..Point::new(1, 2)])
-// });
-// view.backspace(&Default::default(), cx);
-// assert_eq!(view.text(cx), "Xa\nbbb");
-// assert_eq!(
-// view.selections.ranges(cx),
-// [Point::new(1, 0)..Point::new(1, 0)]
-// );
+// handle_completion_request(
+// &mut cx,
+// indoc! {"
+// one.second_completion
+// two si
+// three <si|>
+// additional edit
+// "},
+// vec!["fourth_completion", "fifth_completion", "sixth_completion"],
+// )
+// .await;
+// cx.condition(|editor, _| editor.context_menu_visible())
+// .await;
-// view.change_selections(None, cx, |s| {
-// s.select_ranges([Point::new(1, 1)..Point::new(0, 1)])
-// });
-// view.backspace(&Default::default(), cx);
-// assert_eq!(view.text(cx), "X\nbb");
-// assert_eq!(
-// view.selections.ranges(cx),
-// [Point::new(0, 1)..Point::new(0, 1)]
-// );
+// let apply_additional_edits = cx.update_editor(|editor, cx| {
+// editor
+// .confirm_completion(&ConfirmCompletion::default(), cx)
+// .unwrap()
// });
-// }
+// cx.assert_editor_state(indoc! {"
+// one.second_completion
+// two sixth_completionˇ
+// three sixth_completionˇ
+// additional edit
+// "});
-// #[gpui::test]
-// fn test_editing_overlapping_excerpts(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
+// handle_resolve_completion_request(&mut cx, None).await;
+// apply_additional_edits.await.unwrap();
-// let markers = vec![('[', ']').into(), ('(', ')').into()];
-// let (initial_text, mut excerpt_ranges) = marked_text_ranges_by(
-// indoc! {"
-// [aaaa
-// (bbbb]
-// cccc)",
-// },
-// markers.clone(),
-// );
-// let excerpt_ranges = markers.into_iter().map(|marker| {
-// let context = excerpt_ranges.remove(&marker).unwrap()[0].clone();
-// ExcerptRange {
-// context,
-// primary: None,
-// }
+// cx.update(|cx| {
+// cx.update_global::<SettingsStore, _, _>(|settings, cx| {
+// settings.update_user_settings::<EditorSettings>(cx, |settings| {
+// settings.show_completions_on_input = Some(false);
+// });
+// })
// });
-// let buffer = cx.add_model(|cx| Buffer::new(0, cx.model_id() as u64, initial_text));
-// let multibuffer = cx.add_model(|cx| {
-// let mut multibuffer = MultiBuffer::new(0);
-// multibuffer.push_excerpts(buffer, excerpt_ranges, cx);
-// multibuffer
+// cx.set_state("editorˇ");
+// cx.simulate_keystroke(".");
+// assert!(cx.editor(|e, _| e.context_menu.read().is_none()));
+// cx.simulate_keystroke("c");
+// cx.simulate_keystroke("l");
+// cx.simulate_keystroke("o");
+// cx.assert_editor_state("editor.cloˇ");
+// assert!(cx.editor(|e, _| e.context_menu.read().is_none()));
+// cx.update_editor(|editor, cx| {
+// editor.show_completions(&ShowCompletions, cx);
// });
-
-// let view = cx.add_window(|cx| build_editor(multibuffer, cx)).root(cx);
-// view.update(cx, |view, cx| {
-// let (expected_text, selection_ranges) = marked_text_ranges(
-// indoc! {"
-// aaaa
-// bˇbbb
-// bˇbbˇb
-// cccc"
-// },
-// true,
-// );
-// assert_eq!(view.text(cx), expected_text);
-// view.change_selections(None, cx, |s| s.select_ranges(selection_ranges));
-
-// view.handle_input("X", cx);
-
-// let (expected_text, expected_selections) = marked_text_ranges(
-// indoc! {"
-// aaaa
-// bXˇbbXb
-// bXˇbbXˇb
-// cccc"
-// },
-// false,
-// );
-// assert_eq!(view.text(cx), expected_text);
-// assert_eq!(view.selections.ranges(cx), expected_selections);
-
-// view.newline(&Newline, cx);
-// let (expected_text, expected_selections) = marked_text_ranges(
-// indoc! {"
-// aaaa
-// bX
-// ˇbbX
-// b
-// bX
-// ˇbbX
-// ˇb
-// cccc"
-// },
-// false,
-// );
-// assert_eq!(view.text(cx), expected_text);
-// assert_eq!(view.selections.ranges(cx), expected_selections);
+// handle_completion_request(&mut cx, "editor.<clo|>", vec!["close", "clobber"]).await;
+// cx.condition(|editor, _| editor.context_menu_visible())
+// .await;
+// let apply_additional_edits = cx.update_editor(|editor, cx| {
+// editor
+// .confirm_completion(&ConfirmCompletion::default(), cx)
+// .unwrap()
// });
+// cx.assert_editor_state("editor.closeˇ");
+// handle_resolve_completion_request(&mut cx, None).await;
+// apply_additional_edits.await.unwrap();
// }
-// #[gpui::test]
-// fn test_refresh_selections(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
+#[gpui::test]
+async fn test_toggle_comment(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+ let mut cx = EditorTestContext::new(cx).await;
+ let language = Arc::new(Language::new(
+ LanguageConfig {
+ line_comment: Some("// ".into()),
+ ..Default::default()
+ },
+ Some(tree_sitter_rust::language()),
+ ));
+ cx.update_buffer(|buffer, cx| buffer.set_language(Some(language), cx));
+
+ // If multiple selections intersect a line, the line is only toggled once.
+ cx.set_state(indoc! {"
+ fn a() {
+ «//b();
+ ˇ»// «c();
+ //ˇ» d();
+ }
+ "});
+
+ cx.update_editor(|e, cx| e.toggle_comments(&ToggleComments::default(), cx));
+
+ cx.assert_editor_state(indoc! {"
+ fn a() {
+ «b();
+ c();
+ ˇ» d();
+ }
+ "});
+
+ // The comment prefix is inserted at the same column for every line in a
+ // selection.
+ cx.update_editor(|e, cx| e.toggle_comments(&ToggleComments::default(), cx));
+
+ cx.assert_editor_state(indoc! {"
+ fn a() {
+ // «b();
+ // c();
+ ˇ»// d();
+ }
+ "});
+
+ // If a selection ends at the beginning of a line, that line is not toggled.
+ cx.set_selections_state(indoc! {"
+ fn a() {
+ // b();
+ «// c();
+ ˇ» // d();
+ }
+ "});
+
+ cx.update_editor(|e, cx| e.toggle_comments(&ToggleComments::default(), cx));
+
+ cx.assert_editor_state(indoc! {"
+ fn a() {
+ // b();
+ «c();
+ ˇ» // d();
+ }
+ "});
+
+ // If a selection span a single line and is empty, the line is toggled.
+ cx.set_state(indoc! {"
+ fn a() {
+ a();
+ b();
+ ˇ
+ }
+ "});
+
+ cx.update_editor(|e, cx| e.toggle_comments(&ToggleComments::default(), cx));
+
+ cx.assert_editor_state(indoc! {"
+ fn a() {
+ a();
+ b();
+ //•ˇ
+ }
+ "});
+
+ // If a selection span multiple lines, empty lines are not toggled.
+ cx.set_state(indoc! {"
+ fn a() {
+ «a();
+
+ c();ˇ»
+ }
+ "});
+
+ cx.update_editor(|e, cx| e.toggle_comments(&ToggleComments::default(), cx));
+
+ cx.assert_editor_state(indoc! {"
+ fn a() {
+ // «a();
+
+ // c();ˇ»
+ }
+ "});
+}
-// let buffer = cx.add_model(|cx| Buffer::new(0, cx.model_id() as u64, sample_text(3, 4, 'a')));
-// let mut excerpt1_id = None;
-// let multibuffer = cx.add_model(|cx| {
-// let mut multibuffer = MultiBuffer::new(0);
-// excerpt1_id = multibuffer
-// .push_excerpts(
-// buffer.clone(),
-// [
-// ExcerptRange {
-// context: Point::new(0, 0)..Point::new(1, 4),
-// primary: None,
-// },
-// ExcerptRange {
-// context: Point::new(1, 0)..Point::new(2, 4),
-// primary: None,
-// },
-// ],
-// cx,
-// )
-// .into_iter()
-// .next();
-// assert_eq!(multibuffer.read(cx).text(), "aaaa\nbbbb\nbbbb\ncccc");
-// multibuffer
-// });
+#[gpui::test]
+async fn test_advance_downward_on_toggle_comment(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let language = Arc::new(Language::new(
+ LanguageConfig {
+ line_comment: Some("// ".into()),
+ ..Default::default()
+ },
+ Some(tree_sitter_rust::language()),
+ ));
+
+ let registry = Arc::new(LanguageRegistry::test());
+ registry.add(language.clone());
+
+ let mut cx = EditorTestContext::new(cx).await;
+ cx.update_buffer(|buffer, cx| {
+ buffer.set_language_registry(registry);
+ buffer.set_language(Some(language), cx);
+ });
-// let editor = cx
-// .add_window(|cx| {
-// let mut editor = build_editor(multibuffer.clone(), cx);
-// let snapshot = editor.snapshot(cx);
-// editor.change_selections(None, cx, |s| {
-// s.select_ranges([Point::new(1, 3)..Point::new(1, 3)])
-// });
-// editor.begin_selection(Point::new(2, 1).to_display_point(&snapshot), true, 1, cx);
-// assert_eq!(
-// editor.selections.ranges(cx),
-// [
-// Point::new(1, 3)..Point::new(1, 3),
-// Point::new(2, 1)..Point::new(2, 1),
-// ]
-// );
-// editor
-// })
-// .root(cx);
+ let toggle_comments = &ToggleComments {
+ advance_downwards: true,
+ };
+
+ // Single cursor on one line -> advance
+ // Cursor moves horizontally 3 characters as well on non-blank line
+ cx.set_state(indoc!(
+ "fn a() {
+ ˇdog();
+ cat();
+ }"
+ ));
+ cx.update_editor(|editor, cx| {
+ editor.toggle_comments(toggle_comments, cx);
+ });
+ cx.assert_editor_state(indoc!(
+ "fn a() {
+ // dog();
+ catˇ();
+ }"
+ ));
+
+ // Single selection on one line -> don't advance
+ cx.set_state(indoc!(
+ "fn a() {
+ «dog()ˇ»;
+ cat();
+ }"
+ ));
+ cx.update_editor(|editor, cx| {
+ editor.toggle_comments(toggle_comments, cx);
+ });
+ cx.assert_editor_state(indoc!(
+ "fn a() {
+ // «dog()ˇ»;
+ cat();
+ }"
+ ));
+
+ // Multiple cursors on one line -> advance
+ cx.set_state(indoc!(
+ "fn a() {
+ ˇdˇog();
+ cat();
+ }"
+ ));
+ cx.update_editor(|editor, cx| {
+ editor.toggle_comments(toggle_comments, cx);
+ });
+ cx.assert_editor_state(indoc!(
+ "fn a() {
+ // dog();
+ catˇ(ˇ);
+ }"
+ ));
+
+ // Multiple cursors on one line, with selection -> don't advance
+ cx.set_state(indoc!(
+ "fn a() {
+ ˇdˇog«()ˇ»;
+ cat();
+ }"
+ ));
+ cx.update_editor(|editor, cx| {
+ editor.toggle_comments(toggle_comments, cx);
+ });
+ cx.assert_editor_state(indoc!(
+ "fn a() {
+ // ˇdˇog«()ˇ»;
+ cat();
+ }"
+ ));
+
+ // Single cursor on one line -> advance
+ // Cursor moves to column 0 on blank line
+ cx.set_state(indoc!(
+ "fn a() {
+ ˇdog();
+
+ cat();
+ }"
+ ));
+ cx.update_editor(|editor, cx| {
+ editor.toggle_comments(toggle_comments, cx);
+ });
+ cx.assert_editor_state(indoc!(
+ "fn a() {
+ // dog();
+ ˇ
+ cat();
+ }"
+ ));
+
+ // Single cursor on one line -> advance
+ // Cursor starts and ends at column 0
+ cx.set_state(indoc!(
+ "fn a() {
+ ˇ dog();
+ cat();
+ }"
+ ));
+ cx.update_editor(|editor, cx| {
+ editor.toggle_comments(toggle_comments, cx);
+ });
+ cx.assert_editor_state(indoc!(
+ "fn a() {
+ // dog();
+ ˇ cat();
+ }"
+ ));
+}
-// // Refreshing selections is a no-op when excerpts haven't changed.
-// editor.update(cx, |editor, cx| {
-// editor.change_selections(None, cx, |s| s.refresh());
-// assert_eq!(
-// editor.selections.ranges(cx),
-// [
-// Point::new(1, 3)..Point::new(1, 3),
-// Point::new(2, 1)..Point::new(2, 1),
-// ]
-// );
-// });
+#[gpui::test]
+async fn test_toggle_block_comment(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let mut cx = EditorTestContext::new(cx).await;
+
+ let html_language = Arc::new(
+ Language::new(
+ LanguageConfig {
+ name: "HTML".into(),
+ block_comment: Some(("<!-- ".into(), " -->".into())),
+ ..Default::default()
+ },
+ Some(tree_sitter_html::language()),
+ )
+ .with_injection_query(
+ r#"
+ (script_element
+ (raw_text) @content
+ (#set! "language" "javascript"))
+ "#,
+ )
+ .unwrap(),
+ );
+
+ let javascript_language = Arc::new(Language::new(
+ LanguageConfig {
+ name: "JavaScript".into(),
+ line_comment: Some("// ".into()),
+ ..Default::default()
+ },
+ Some(tree_sitter_typescript::language_tsx()),
+ ));
+
+ let registry = Arc::new(LanguageRegistry::test());
+ registry.add(html_language.clone());
+ registry.add(javascript_language.clone());
+
+ cx.update_buffer(|buffer, cx| {
+ buffer.set_language_registry(registry);
+ buffer.set_language(Some(html_language), cx);
+ });
-// multibuffer.update(cx, |multibuffer, cx| {
-// multibuffer.remove_excerpts([excerpt1_id.unwrap()], cx);
-// });
-// editor.update(cx, |editor, cx| {
-// // Removing an excerpt causes the first selection to become degenerate.
-// assert_eq!(
-// editor.selections.ranges(cx),
-// [
-// Point::new(0, 0)..Point::new(0, 0),
-// Point::new(0, 1)..Point::new(0, 1)
-// ]
-// );
+ // Toggle comments for empty selections
+ cx.set_state(
+ &r#"
+ <p>A</p>ˇ
+ <p>B</p>ˇ
+ <p>C</p>ˇ
+ "#
+ .unindent(),
+ );
+ cx.update_editor(|editor, cx| editor.toggle_comments(&ToggleComments::default(), cx));
+ cx.assert_editor_state(
+ &r#"
+ <!-- <p>A</p>ˇ -->
+ <!-- <p>B</p>ˇ -->
+ <!-- <p>C</p>ˇ -->
+ "#
+ .unindent(),
+ );
+ cx.update_editor(|editor, cx| editor.toggle_comments(&ToggleComments::default(), cx));
+ cx.assert_editor_state(
+ &r#"
+ <p>A</p>ˇ
+ <p>B</p>ˇ
+ <p>C</p>ˇ
+ "#
+ .unindent(),
+ );
+
+ // Toggle comments for mixture of empty and non-empty selections, where
+ // multiple selections occupy a given line.
+ cx.set_state(
+ &r#"
+ <p>A«</p>
+ <p>ˇ»B</p>ˇ
+ <p>C«</p>
+ <p>ˇ»D</p>ˇ
+ "#
+ .unindent(),
+ );
+
+ cx.update_editor(|editor, cx| editor.toggle_comments(&ToggleComments::default(), cx));
+ cx.assert_editor_state(
+ &r#"
+ <!-- <p>A«</p>
+ <p>ˇ»B</p>ˇ -->
+ <!-- <p>C«</p>
+ <p>ˇ»D</p>ˇ -->
+ "#
+ .unindent(),
+ );
+ cx.update_editor(|editor, cx| editor.toggle_comments(&ToggleComments::default(), cx));
+ cx.assert_editor_state(
+ &r#"
+ <p>A«</p>
+ <p>ˇ»B</p>ˇ
+ <p>C«</p>
+ <p>ˇ»D</p>ˇ
+ "#
+ .unindent(),
+ );
+
+ // Toggle comments when different languages are active for different
+ // selections.
+ cx.set_state(
+ &r#"
+ ˇ<script>
+ ˇvar x = new Y();
+ ˇ</script>
+ "#
+ .unindent(),
+ );
+ cx.executor().run_until_parked();
+ cx.update_editor(|editor, cx| editor.toggle_comments(&ToggleComments::default(), cx));
+ cx.assert_editor_state(
+ &r#"
+ <!-- ˇ<script> -->
+ // ˇvar x = new Y();
+ <!-- ˇ</script> -->
+ "#
+ .unindent(),
+ );
+}
-// // Refreshing selections will relocate the first selection to the original buffer
-// // location.
-// editor.change_selections(None, cx, |s| s.refresh());
-// assert_eq!(
-// editor.selections.ranges(cx),
-// [
-// Point::new(0, 1)..Point::new(0, 1),
-// Point::new(0, 3)..Point::new(0, 3)
-// ]
-// );
-// assert!(editor.selections.pending_anchor().is_some());
-// });
-// }
+#[gpui::test]
+fn test_editing_disjoint_excerpts(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let buffer =
+ cx.build_model(|cx| Buffer::new(0, cx.entity_id().as_u64(), sample_text(3, 4, 'a')));
+ let multibuffer = cx.build_model(|cx| {
+ let mut multibuffer = MultiBuffer::new(0);
+ multibuffer.push_excerpts(
+ buffer.clone(),
+ [
+ ExcerptRange {
+ context: Point::new(0, 0)..Point::new(0, 4),
+ primary: None,
+ },
+ ExcerptRange {
+ context: Point::new(1, 0)..Point::new(1, 4),
+ primary: None,
+ },
+ ],
+ cx,
+ );
+ assert_eq!(multibuffer.read(cx).text(), "aaaa\nbbbb");
+ multibuffer
+ });
-// #[gpui::test]
-// fn test_refresh_selections_while_selecting_with_mouse(cx: &mut TestAppContext) {
-// init_test(cx, |_| {});
+ let (view, mut cx) = cx.add_window_view(|cx| build_editor(multibuffer, cx));
+ let cx = &mut cx;
+ view.update(cx, |view, cx| {
+ assert_eq!(view.text(cx), "aaaa\nbbbb");
+ view.change_selections(None, cx, |s| {
+ s.select_ranges([
+ Point::new(0, 0)..Point::new(0, 0),
+ Point::new(1, 0)..Point::new(1, 0),
+ ])
+ });
-// let buffer = cx.add_model(|cx| Buffer::new(0, cx.model_id() as u64, sample_text(3, 4, 'a')));
-// let mut excerpt1_id = None;
-// let multibuffer = cx.add_model(|cx| {
-// let mut multibuffer = MultiBuffer::new(0);
-// excerpt1_id = multibuffer
-// .push_excerpts(
-// buffer.clone(),
-// [
-// ExcerptRange {
-// context: Point::new(0, 0)..Point::new(1, 4),
-// primary: None,
-// },
-// ExcerptRange {
-// context: Point::new(1, 0)..Point::new(2, 4),
-// primary: None,
-// },
-// ],
-// cx,
-// )
-// .into_iter()
-// .next();
-// assert_eq!(multibuffer.read(cx).text(), "aaaa\nbbbb\nbbbb\ncccc");
-// multibuffer
-// });
+ view.handle_input("X", cx);
+ assert_eq!(view.text(cx), "Xaaaa\nXbbbb");
+ assert_eq!(
+ view.selections.ranges(cx),
+ [
+ Point::new(0, 1)..Point::new(0, 1),
+ Point::new(1, 1)..Point::new(1, 1),
+ ]
+ );
+
+ // Ensure the cursor's head is respected when deleting across an excerpt boundary.
+ view.change_selections(None, cx, |s| {
+ s.select_ranges([Point::new(0, 2)..Point::new(1, 2)])
+ });
+ view.backspace(&Default::default(), cx);
+ assert_eq!(view.text(cx), "Xa\nbbb");
+ assert_eq!(
+ view.selections.ranges(cx),
+ [Point::new(1, 0)..Point::new(1, 0)]
+ );
+
+ view.change_selections(None, cx, |s| {
+ s.select_ranges([Point::new(1, 1)..Point::new(0, 1)])
+ });
+ view.backspace(&Default::default(), cx);
+ assert_eq!(view.text(cx), "X\nbb");
+ assert_eq!(
+ view.selections.ranges(cx),
+ [Point::new(0, 1)..Point::new(0, 1)]
+ );
+ });
+}
-// let editor = cx
-// .add_window(|cx| {
-// let mut editor = build_editor(multibuffer.clone(), cx);
-// let snapshot = editor.snapshot(cx);
-// editor.begin_selection(Point::new(1, 3).to_display_point(&snapshot), false, 1, cx);
-// assert_eq!(
-// editor.selections.ranges(cx),
-// [Point::new(1, 3)..Point::new(1, 3)]
-// );
-// editor
-// })
-// .root(cx);
+#[gpui::test]
+fn test_editing_overlapping_excerpts(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let markers = vec![('[', ']').into(), ('(', ')').into()];
+ let (initial_text, mut excerpt_ranges) = marked_text_ranges_by(
+ indoc! {"
+ [aaaa
+ (bbbb]
+ cccc)",
+ },
+ markers.clone(),
+ );
+ let excerpt_ranges = markers.into_iter().map(|marker| {
+ let context = excerpt_ranges.remove(&marker).unwrap()[0].clone();
+ ExcerptRange {
+ context,
+ primary: None,
+ }
+ });
+ let buffer = cx.build_model(|cx| Buffer::new(0, cx.entity_id().as_u64(), initial_text));
+ let multibuffer = cx.build_model(|cx| {
+ let mut multibuffer = MultiBuffer::new(0);
+ multibuffer.push_excerpts(buffer, excerpt_ranges, cx);
+ multibuffer
+ });
-// multibuffer.update(cx, |multibuffer, cx| {
-// multibuffer.remove_excerpts([excerpt1_id.unwrap()], cx);
-// });
-// editor.update(cx, |editor, cx| {
-// assert_eq!(
-// editor.selections.ranges(cx),
-// [Point::new(0, 0)..Point::new(0, 0)]
-// );
+ let (view, mut cx) = cx.add_window_view(|cx| build_editor(multibuffer, cx));
+ let cx = &mut cx;
+ view.update(cx, |view, cx| {
+ let (expected_text, selection_ranges) = marked_text_ranges(
+ indoc! {"
+ aaaa
+ bˇbbb
+ bˇbbˇb
+ cccc"
+ },
+ true,
+ );
+ assert_eq!(view.text(cx), expected_text);
+ view.change_selections(None, cx, |s| s.select_ranges(selection_ranges));
+
+ view.handle_input("X", cx);
+
+ let (expected_text, expected_selections) = marked_text_ranges(
+ indoc! {"
+ aaaa
+ bXˇbbXb
+ bXˇbbXˇb
+ cccc"
+ },
+ false,
+ );
+ assert_eq!(view.text(cx), expected_text);
+ assert_eq!(view.selections.ranges(cx), expected_selections);
+
+ view.newline(&Newline, cx);
+ let (expected_text, expected_selections) = marked_text_ranges(
+ indoc! {"
+ aaaa
+ bX
+ ˇbbX
+ b
+ bX
+ ˇbbX
+ ˇb
+ cccc"
+ },
+ false,
+ );
+ assert_eq!(view.text(cx), expected_text);
+ assert_eq!(view.selections.ranges(cx), expected_selections);
+ });
+}
-// // Ensure we don't panic when selections are refreshed and that the pending selection is finalized.
-// editor.change_selections(None, cx, |s| s.refresh());
-// assert_eq!(
-// editor.selections.ranges(cx),
-// [Point::new(0, 3)..Point::new(0, 3)]
-// );
-// assert!(editor.selections.pending_anchor().is_some());
-// });
-// }
+#[gpui::test]
+fn test_refresh_selections(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let buffer =
+ cx.build_model(|cx| Buffer::new(0, cx.entity_id().as_u64(), sample_text(3, 4, 'a')));
+ let mut excerpt1_id = None;
+ let multibuffer = cx.build_model(|cx| {
+ let mut multibuffer = MultiBuffer::new(0);
+ excerpt1_id = multibuffer
+ .push_excerpts(
+ buffer.clone(),
+ [
+ ExcerptRange {
+ context: Point::new(0, 0)..Point::new(1, 4),
+ primary: None,
+ },
+ ExcerptRange {
+ context: Point::new(1, 0)..Point::new(2, 4),
+ primary: None,
+ },
+ ],
+ cx,
+ )
+ .into_iter()
+ .next();
+ assert_eq!(multibuffer.read(cx).text(), "aaaa\nbbbb\nbbbb\ncccc");
+ multibuffer
+ });
-// #[gpui::test]
-// async fn test_extra_newline_insertion(cx: &mut gpui::TestAppContext) {
-// init_test(cx, |_| {});
+ let editor = cx.add_window(|cx| {
+ let mut editor = build_editor(multibuffer.clone(), cx);
+ let snapshot = editor.snapshot(cx);
+ editor.change_selections(None, cx, |s| {
+ s.select_ranges([Point::new(1, 3)..Point::new(1, 3)])
+ });
+ editor.begin_selection(Point::new(2, 1).to_display_point(&snapshot), true, 1, cx);
+ assert_eq!(
+ editor.selections.ranges(cx),
+ [
+ Point::new(1, 3)..Point::new(1, 3),
+ Point::new(2, 1)..Point::new(2, 1),
+ ]
+ );
+ editor
+ });
-// let language = Arc::new(
-// Language::new(
-// LanguageConfig {
-// brackets: BracketPairConfig {
-// pairs: vec![
-// BracketPair {
-// start: "{".to_string(),
-// end: "}".to_string(),
-// close: true,
-// newline: true,
-// },
-// BracketPair {
-// start: "/* ".to_string(),
-// end: " */".to_string(),
-// close: true,
-// newline: true,
-// },
-// ],
-// ..Default::default()
-// },
-// ..Default::default()
-// },
-// Some(tree_sitter_rust::language()),
-// )
-// .with_indents_query("")
-// .unwrap(),
-// );
+ // Refreshing selections is a no-op when excerpts haven't changed.
+ editor.update(cx, |editor, cx| {
+ editor.change_selections(None, cx, |s| s.refresh());
+ assert_eq!(
+ editor.selections.ranges(cx),
+ [
+ Point::new(1, 3)..Point::new(1, 3),
+ Point::new(2, 1)..Point::new(2, 1),
+ ]
+ );
+ });
-// let text = concat!(
-// "{ }\n", //
-// " x\n", //
-// " /* */\n", //
-// "x\n", //
-// "{{} }\n", //
-// );
+ multibuffer.update(cx, |multibuffer, cx| {
+ multibuffer.remove_excerpts([excerpt1_id.unwrap()], cx);
+ });
+ editor.update(cx, |editor, cx| {
+ // Removing an excerpt causes the first selection to become degenerate.
+ assert_eq!(
+ editor.selections.ranges(cx),
+ [
+ Point::new(0, 0)..Point::new(0, 0),
+ Point::new(0, 1)..Point::new(0, 1)
+ ]
+ );
+
+ // Refreshing selections will relocate the first selection to the original buffer
+ // location.
+ editor.change_selections(None, cx, |s| s.refresh());
+ assert_eq!(
+ editor.selections.ranges(cx),
+ [
+ Point::new(0, 1)..Point::new(0, 1),
+ Point::new(0, 3)..Point::new(0, 3)
+ ]
+ );
+ assert!(editor.selections.pending_anchor().is_some());
+ });
+}
-// let buffer =
-// cx.add_model(|cx| Buffer::new(0, cx.model_id() as u64, text).with_language(language, cx));
-// let buffer = cx.add_model(|cx| MultiBuffer::singleton(buffer, cx));
-// let view = cx.add_window(|cx| build_editor(buffer, cx)).root(cx);
-// view.condition(cx, |view, cx| !view.buffer.read(cx).is_parsing(cx))
-// .await;
+#[gpui::test]
+fn test_refresh_selections_while_selecting_with_mouse(cx: &mut TestAppContext) {
+ init_test(cx, |_| {});
+
+ let buffer =
+ cx.build_model(|cx| Buffer::new(0, cx.entity_id().as_u64(), sample_text(3, 4, 'a')));
+ let mut excerpt1_id = None;
+ let multibuffer = cx.build_model(|cx| {
+ let mut multibuffer = MultiBuffer::new(0);
+ excerpt1_id = multibuffer
+ .push_excerpts(
+ buffer.clone(),
+ [
+ ExcerptRange {
+ context: Point::new(0, 0)..Point::new(1, 4),
+ primary: None,
+ },
+ ExcerptRange {
+ context: Point::new(1, 0)..Point::new(2, 4),
+ primary: None,
+ },
+ ],
+ cx,
+ )
+ .into_iter()
+ .next();
+ assert_eq!(multibuffer.read(cx).text(), "aaaa\nbbbb\nbbbb\ncccc");
+ multibuffer
+ });
-// view.update(cx, |view, cx| {
-// view.change_selections(None, cx, |s| {
-// s.select_display_ranges([
-// DisplayPoint::new(0, 2)..DisplayPoint::new(0, 3),
-// DisplayPoint::new(2, 5)..DisplayPoint::new(2, 5),
-// DisplayPoint::new(4, 4)..DisplayPoint::new(4, 4),
-// ])
-// });
-// view.newline(&Newline, cx);
+ let editor = cx.add_window(|cx| {
+ let mut editor = build_editor(multibuffer.clone(), cx);
+ let snapshot = editor.snapshot(cx);
+ editor.begin_selection(Point::new(1, 3).to_display_point(&snapshot), false, 1, cx);
+ assert_eq!(
+ editor.selections.ranges(cx),
+ [Point::new(1, 3)..Point::new(1, 3)]
+ );
+ editor
+ });
-// assert_eq!(
-// view.buffer().read(cx).read(cx).text(),
-// concat!(
-// "{ \n", // Suppress rustfmt
-// "\n", //
-// "}\n", //
-// " x\n", //
-// " /* \n", //
-// " \n", //
-// " */\n", //
-// "x\n", //
-// "{{} \n", //
-// "}\n", //
-// )
-// );
-// });
-// }
+ multibuffer.update(cx, |multibuffer, cx| {
+ multibuffer.remove_excerpts([excerpt1_id.unwrap()], cx);
+ });
+ editor.update(cx, |editor, cx| {
+ assert_eq!(
+ editor.selections.ranges(cx),
+ [Point::new(0, 0)..Point::new(0, 0)]
+ );
+
+ // Ensure we don't panic when selections are refreshed and that the pending selection is finalized.
+ editor.change_selections(None, cx, |s| s.refresh());
+ assert_eq!(
+ editor.selections.ranges(cx),
+ [Point::new(0, 3)..Point::new(0, 3)]
+ );
+ assert!(editor.selections.pending_anchor().is_some());
+ });
+}
+
+#[gpui::test]
+async fn test_extra_newline_insertion(cx: &mut gpui::TestAppContext) {
+ init_test(cx, |_| {});
+
+ let language = Arc::new(
+ Language::new(
+ LanguageConfig {
+ brackets: BracketPairConfig {
+ pairs: vec![
+ BracketPair {
+ start: "{".to_string(),
+ end: "}".to_string(),
+ close: true,
+ newline: true,
+ },
+ BracketPair {
+ start: "/* ".to_string(),
+ end: " */".to_string(),
+ close: true,
+ newline: true,
+ },
+ ],
+ ..Default::default()
+ },
+ ..Default::default()
+ },
+ Some(tree_sitter_rust::language()),
+ )
+ .with_indents_query("")
+ .unwrap(),
+ );
+
+ let text = concat!(
+ "{ }\n", //
+ " x\n", //
+ " /* */\n", //
+ "x\n", //
+ "{{} }\n", //
+ );
+
+ let buffer = cx.build_model(|cx| {
+ Buffer::new(0, cx.entity_id().as_u64(), text).with_language(language, cx)
+ });
+ let buffer = cx.build_model(|cx| MultiBuffer::singleton(buffer, cx));
+ let (view, mut cx) = cx.add_window_view(|cx| build_editor(buffer, cx));
+ let cx = &mut cx;
+ view.condition::<crate::Event>(cx, |view, cx| !view.buffer.read(cx).is_parsing(cx))
+ .await;
+
+ view.update(cx, |view, cx| {
+ view.change_selections(None, cx, |s| {
+ s.select_display_ranges([
+ DisplayPoint::new(0, 2)..DisplayPoint::new(0, 3),
+ DisplayPoint::new(2, 5)..DisplayPoint::new(2, 5),
+ DisplayPoint::new(4, 4)..DisplayPoint::new(4, 4),
+ ])
+ });
+ view.newline(&Newline, cx);
+
+ assert_eq!(
+ view.buffer().read(cx).read(cx).text(),
+ concat!(
+ "{ \n", // Suppress rustfmt
+ "\n", //
+ "}\n", //
+ " x\n", //
+ " /* \n", //
+ " \n", //
+ " */\n", //
+ "x\n", //
+ "{{} \n", //
+ "}\n", //
+ )
+ );
+ });
+}
+//todo!(finish editor tests)
// #[gpui::test]
// fn test_highlighted_ranges(cx: &mut TestAppContext) {
// init_test(cx, |_| {});
-// let editor = cx
-// .add_window(|cx| {
-// let buffer = MultiBuffer::build_simple(&sample_text(16, 8, 'a'), cx);
-// build_editor(buffer.clone(), cx)
-// })
-// .root(cx);
+// let editor = cx.add_window(|cx| {
+// let buffer = MultiBuffer::build_simple(&sample_text(16, 8, 'a'), cx);
+// build_editor(buffer.clone(), cx)
+// });
// editor.update(cx, |editor, cx| {
// struct Type1;