fix: move_next_word_end (#225)

This commit is contained in:
Levi 2025-04-08 15:01:37 -03:00 committed by GitHub
parent 41339b05e4
commit 3ce4aaf33a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -132,7 +132,7 @@ const cmds_ = struct {
const root = try ed.buf_root(); const root = try ed.buf_root();
for (ed.cursels.items) |*cursel_| if (cursel_.*) |*cursel| { for (ed.cursels.items) |*cursel_| if (cursel_.*) |*cursel| {
cursel.disable_selection(root, ed.metrics); cursel.selection = null;
}; };
ed.with_selections_const_repeat(root, move_cursor_word_right_end_helix, ctx) catch {}; ed.with_selections_const_repeat(root, move_cursor_word_right_end_helix, ctx) catch {};