Skip to content
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

Separate jump behavior from increment/decrement #4123

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'origin/master' into 2019_increment_numb…
…er_crashes
  • Loading branch information
greg committed Oct 11, 2022
commit ff674c7f5946e9b2a0eb22fcdc1bcc68415363de
4 changes: 2 additions & 2 deletions helix-term/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4883,8 +4883,8 @@ fn increment_impl(cx: &mut Context, amount: i64) {
let transaction = Transaction::change(doc.text(), changes.into_iter());
let transaction = transaction.with_selection(new_selection);

doc.apply(&transaction, view.id);
};
apply_transaction(&transaction, doc, view);
}
}

fn record_macro(cx: &mut Context) {
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.