Switch the cursor side of the selection after a [ motion

This commit is contained in:
fantacell 2025-08-21 14:09:04 +02:00
parent c602172edb
commit 62fc82b86f

View file

@ -76,7 +76,7 @@ impl Vim {
return;
};
selection.set_head_tail(range.end, range.start, SelectionGoal::None);
selection.set_head_tail(range.start, range.end, SelectionGoal::None);
});
});
});