-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Apply transactions to all views #4733
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
6e423bb
f650ce0
8f08375
187858f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1337,7 +1337,9 @@ impl Component for EditorView { | |
cx.editor.status_msg = None; | ||
|
||
let mode = cx.editor.mode(); | ||
let (view, _) = current!(cx.editor); | ||
let (view, doc) = current!(cx.editor); | ||
let original_doc_id = doc.id(); | ||
let original_doc_revision = doc.get_current_revision(); | ||
let focus = view.id; | ||
|
||
if let Some(on_next_key) = self.on_next_key.take() { | ||
|
@@ -1413,13 +1415,31 @@ impl Component for EditorView { | |
let view = view_mut!(cx.editor, focus); | ||
let doc = doc_mut!(cx.editor, &view.doc); | ||
|
||
view.ensure_cursor_in_view(doc, config.scrolloff); | ||
|
||
// Store a history state if not in insert mode. This also takes care of | ||
// committing changes when leaving insert mode. | ||
if mode != Mode::Insert { | ||
doc.append_changes_to_history(view.id); | ||
} | ||
|
||
// If the current document has been changed, apply the changes to all views. | ||
// This ensures that selections in jumplists follow changes. | ||
Comment on lines
+1424
to
+1425
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note: mouse clicks can also change view focus and are handled separately further below There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah ok, this will apply as soon as changes are added to history, I thought it was when focus is changed 👍🏻 |
||
if doc.id() == original_doc_id | ||
&& doc.get_current_revision() > original_doc_revision | ||
{ | ||
if let Some(transaction) = | ||
doc.history.get_mut().changes_since(original_doc_revision) | ||
{ | ||
let doc = doc!(cx.editor, &original_doc_id); | ||
for (view, _focused) in cx.editor.tree.views_mut() { | ||
view.apply(&transaction, doc); | ||
} | ||
} | ||
} | ||
|
||
let view = view_mut!(cx.editor, focus); | ||
let doc = doc_mut!(cx.editor, &view.doc); | ||
|
||
view.ensure_cursor_in_view(doc, config.scrolloff); | ||
} | ||
|
||
EventResult::Consumed(callback) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,3 +127,29 @@ async fn test_split_write_quit_same_file() -> anyhow::Result<()> { | |
|
||
Ok(()) | ||
} | ||
|
||
#[tokio::test(flavor = "multi_thread")] | ||
async fn test_changes_in_splits_apply_to_all_views() -> anyhow::Result<()> { | ||
// See <https://github.com/helix-editor/helix/issues/4732>. | ||
// Transactions must be applied to any view that has the changed document open. | ||
// This sequence would panic since the jumplist entry would be modified in one | ||
// window but not the other. Attempting to update the changelist in the other | ||
// window would cause a panic since it would point outside of the document. | ||
|
||
// The key sequence here: | ||
// * <C-w>v Create a vertical split of the current buffer. | ||
// Both views look at the same doc. | ||
// * [<space> Add a line ending to the beginning of the document. | ||
// The cursor is now at line 2 in window 2. | ||
// * <C-s> Save that selection to the jumplist in window 2. | ||
// * <C-w>w Switch to window 1. | ||
// * kd Delete line 1 in window 1. | ||
// * <C-w>q Close window 1, focusing window 2. | ||
// * d Delete line 1 in window 2. | ||
// | ||
// This panicked in the past because the jumplist entry on line 2 of window 2 | ||
// was not updated and after the `kd` step, pointed outside of the document. | ||
test(("#[|]#", "<C-w>v[<space><C-s><C-w>wkd<C-w>qd", "#[|]#")).await?; | ||
Comment on lines
+133
to
+152
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ❤️ |
||
|
||
Ok(()) | ||
} |
Uh oh!
There was an error while loading. Please reload this page.