We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Maybe adding Moving lines (https://github.com/fedepujol/move.nvim) or simple :m .+1<CR> would be a great idea.
:m .+1<CR>
keymap.set("n", "<leader>k", ":MoveLine(-1)<CR>", opts) -- move line vertical above keymap.set("n", "<leader>j", ":MoveLine(1)<CR>", opts) -- move line vertical below
Works, Ok.... is helpful; maybe changing to <A-k> and <A-j> would be better for Mac/VsCode Users.
<A-k> and <A-j>
Definetly Alt+Up , Alt+Down, Shift+Alt+Up/Down on VSCode is great
Of course, we can only use dd or yy and P or p. But could be a great feature.
dd
yy
P
p
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Maybe adding Moving lines (https://github.com/fedepujol/move.nvim) or simple
:m .+1<CR>
would be a great idea.Works, Ok.... is helpful; maybe changing to
<A-k> and <A-j>
would be better for Mac/VsCode Users.Definetly Alt+Up , Alt+Down, Shift+Alt+Up/Down on VSCode is great
Of course, we can only use
dd
oryy
andP
orp
. But could be a great feature.The text was updated successfully, but these errors were encountered: