feat: move selection lines up and down #14656
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Introduce a command allowing to move lines with selections up or down.
I personally liked being able to move lines without having to yank or delete and paste.
I tried something like this in the config:
but it's totally broken and works only in some limited cases, it also modifies the selection and the clipboard.
So I've added a command for it.
It's implemented it to move the lines before, after the selection. e.g. to move the selected lines 2. and 3. down, we move line 4 before the selection.
It gets a bit messy when multiple selections are present.
a count can be specified. If moving up, it will be capped to the top of the file.
If moving down, additional line returns are inserted after the last line.