ChatGPT解决这个技术问题 Extra ChatGPT

Move entire line up and down in Vim

In Notepad++, I can use Ctrl + Shift + Up / Down to move the current line up and down. Is there a similar command to this in Vim? I have looked through endless guides, but have found nothing.

If there isn't, how could I bind the action to that key combination?

Edit: Mykola's answer works for all lines, apart from those at the beginning and end of the buffer. Moving the first line up or the bottom line down deletes the line, and when moving the bottom line up it jumps two spaces initially, like a pawn! Can anyone offer any refinements?

I had no choice but to implement scripting solution. I hope it is clean and adoptable for your needs.
For ye children of the future: vim.wikia.com/wiki/Moving_lines_up_or_down
I'm not sure why you need a script, the Wikia article examples work. I've posted below a simplified version, because Wikia's example with 3 different mapping modes can be rather daunting (and not really necessary. If you use only the block selection mappings, then you can simply remember to block select (Shift V) and use these shortcuts (see my answer below).
Screencast on the topic: vimcasts.org/e/26
Also on vi SE

H
Henno

If I want to swap one line with the line above I usually do the following

ddkP

Explanation

dd will delete the line and add it to the default register.

k will move up a line (j would move down a line)

P will paste above the current line


And it's always available, too. :-)
And ddp to move a line down (delete line and paste below current line)
To move bunch of lines, say 4, 4 dd and then move to, say 2 line, then :2 where you want to paste and P.
@Guru should that be 4ddinstead of 4 dd?
And dd<number>jp to move the current line <number>+1 of lines down. And dd<number>kp to move the current line <number> of lines up.
S
Serg

Assuming the cursor is on the line you like to move.

Moving up and down: :m for move

:m +1 - moves down 1 line

:m -2 - move up 1 lines

(Note you can replace +1 with any numbers depending on how many lines you want to move it up or down, ie +2 would move it down 2 lines, -3 would move it up 2 lines)

To move to specific line

:set number - display number lines (easier to see where you are moving it to)

:m 3 - move the line after 3rd line (replace 3 to any line you'd like)

Moving multiple lines:

V (i.e. Shift-V) and move courser up and down to select multiple lines in VIM

once selected hit : and run the commands above, m +1 etc


for me :m -2 only moves up one line.
i put this method in my vimrc but then i cant repeat the command using '.'. does anybody know why that is?
Very nice! Not as comfortable as the solution in Notepad++, but still - real and working.
Hermann, Sorry, typo/mistake on my part, you are right, :m -2 will move it up one line. I changed it. Also sorry for very late reply (not sure about .vimrc part) Cheers
Moving using the command works, if you want to use it in bindings such as the ones from Notepad++ as the OP asked, you need to enter the following into .vimrc: noremap <c-s-up> :m -2<CR> noremap <c-s-down> :m +1<CR>
M
Mykola Golubyev

Put the following to your .vimrc to do the job

noremap <c-s-up> :call feedkeys( line('.')==1 ? '' : 'ddkP' )<CR>
noremap <c-s-down> ddp

Disappearing of the line looks like a Vim bug. I put a hack to avoid it. Probably there is some more accurate solution.

Update

There are a lot of unexplained difficulties with just using Vim combinations. These are line missing and extra line jumping.

So here is the scripting solution which can be placed either inside .vimrc or ~/.vim/plugin/swap_lines.vim

function! s:swap_lines(n1, n2)
    let line1 = getline(a:n1)
    let line2 = getline(a:n2)
    call setline(a:n1, line2)
    call setline(a:n2, line1)
endfunction

function! s:swap_up()
    let n = line('.')
    if n == 1
        return
    endif

    call s:swap_lines(n, n - 1)
    exec n - 1
endfunction

function! s:swap_down()
    let n = line('.')
    if n == line('$')
        return
    endif

    call s:swap_lines(n, n + 1)
    exec n + 1
endfunction

noremap <silent> <c-s-up> :call <SID>swap_up()<CR>
noremap <silent> <c-s-down> :call <SID>swap_down()<CR>

Had to change to and as there appears to be a clash with my setup, but fantastic answer! Thanks so much
Thanks, great for git rebase --interactive . Had to bind to and . c-s-up/down didn't work.
If somebody wants a different shortcut: c is for control, A is for alt, I use <A-up> like used in eclipse.
The disappearing line is not a Vim bug! It is rather due to performing ddkP on the last line of the document. Try it for yourself on a 3-line file. To avoid such problems, use rather the much easier :m mappings as given on the Vim wiki.
I changed last lines to <A-up> and <A-down> but when I try those keys in vim in visual running in tmux the selection disappears and the cursor moves line up; without moving the selected lines.
j
jacobsimeon

Move a line up: ddkP

Move a line down: ddp


having this in the vimrc disallows repeating the command using '.'
@HermannIngjaldsson, I suppose you could wrap the command in a function if you wanted to be able to use . to repeat.
Yess, .. and if you need to move more lines, you can use V instead of dd.
If you keep pressing this combination at the start or end of a file, it will start deleting those lines.
m
mikew

add the following to ~/.vimrc file (make sure you have no mapping for n,m )

nmap n :m +1<CR>
nmap m :m -2<CR>

now pressing n key will move a line down and m will move a line up.


That will conflict with the default keybinding: go to the next search result with the n key, after you searched the document with /pattern.
s
shybovycha

This worked for me:

http://vim.wikia.com/wiki/Moving_lines_up_or_down_in_a_file

BTW, if you want to use ALT+some_key and your terminal (urxvt does this) refuses to comply, you should enter something like this in your .vimrc:

" For moving lines (^] is a special character; use <M-k> and <M-j> if it works)
nnoremap ^]k mz:m-2<CR>`z==
inoremap ^]j <Esc>:m+<CR>==gi
inoremap ^]k <Esc>:m-2<CR>==gi
vnoremap ^]j :m'>+<CR>gv=`<my`>mzgv`yo`z
nnoremap ^]j mz:m+<CR>`z==
vnoremap ^]k :m'<-2<CR>gv=`>my`<mzgv`yo`z

where ^] is a single character that represents the ALT key. To input that character, use C+v, Esc in Vim (C+q, Esc on Windows).


This is good, using Vim's built-in command for moving a line. It's more likely to behave nicely in the face of undo or an error.
Why don't you enter Esc as C-vEsc (linux). Windows replaces C-v by C-q across the board but has the same way to enter any special key in insert/command mode
@sehe: Thanks, I didn't know that at the time. I've updated the answer.
@RafaelRinaldi, [niv]noremap are remaps for normal|insert|visual modes. <CR> is Carriage Return (Enter key).
@vp_arth No there isn't
s
szg

In command mode position the cursor on the line you want to move down, and then

ddp

Explanation: dd deletes the current line to the general buffer p puts it back AFTER the cursor position, or in case of entire lines, one line below.

There is some confusion regarding commands p and P in many docs. In reality p pastes AFTER cursor, and P AT cursor.


a
alexkv

Just add this code to .vimrc (or .gvimrc)

nnoremap <A-j> :m+<CR>==
nnoremap <A-k> :m-2<CR>==
inoremap <A-j> <Esc>:m+<CR>==gi
inoremap <A-k> <Esc>:m-2<CR>==gi
vnoremap <A-j> :m'>+<CR>gv=gv
vnoremap <A-k> :m-2<CR>gv=gv

As per vim.wikia.com/wiki/… see there for a comprehensive explanation.
On a Mac doesn't work, I don't know why. I've replaced with , and works well using Ctrl key.
For those who still want to use the alt key on a mac: stackoverflow.com/questions/7501092/can-i-map-alt-key-in-vim
G
Geraldo Luis da Silva Ribeiro

A simple solution is to put in your .vimrc these lines:

nmap <C-UP> :m-2<CR>  
nmap <C-DOWN> :m+1<CR>

t
timoxley

Exactly what you're looking for in these plugins:

https://github.com/vim-scripts/upAndDown

https://github.com/matze/vim-move


It supports multiple lines also which is nice.
What does the key stand for?
@UsamaMan Shift modifier
This is nicer imo
@NoahJ.Standerson sure but looks basically the same
C
Casey Rodarmor

When you hit command :help move in vim, here is the result:

:[range]m[ove] {address} *:m* *:mo* *:move* *E134* Move the lines given by [range] to below the line given by {address}.

E.g: Move current line one line down => :m+1.

E.g: Move line with number 100 below the line with number 80 => :100 m 80.

E.g: Move line with number 100 below the line with number 200 => :100 m 200.

E.g: Move lines with number within [100, 120] below the line with number 200 => :100,120 m 200.


G
Guillaume Chevalier

For me, ddkkp did it (instead of ddkP with an uppercase P, which would work too).


j
john-jones

I put the following at the end of my .vimrc file:

noremap H ddkkp
noremap N ddp

So now 'H' and 'N' move current line up and down respectively.


H and N are actually useful commands (H moves the cursor to the top and beginning of the screen, N moves to the previous search result), so I'd recommend using different keys
I see. I have also reconfigured them. To go to the top of the screen I press a and then up. A always means all-the-way in my books. And to search through previous results I press f and then left. F then stands for find. But for those who don't have it like that then yeah.. its valid.
B
Bishal Udash

Easiest way same like vscode. Add below line to .vimrc

"Ctrl+Shift+up move line above"
nmap <C-S-Up> :m -2<CR>

"Ctrl+Shift+down move line below
nmap <C-S-Down> :m +1<CR>

佚名

Here's a simplified version, for MacVim, using the the Wikia article examples (cf. link from gun's comment).

" Move selection up/down (add =gv to reindent after move)
:vmap <D-S-Up> :m-2<CR>gv
:vmap <D-S-Down> :m'>+<CR>gv

I'm using only the block selection variant, because all it takes is Shift-V to select the current line, and optionally cursor up/down to select some more lines.

According to the shortcuts above, pressing Cmd-Shift-Up/Down will shift the block selection up/down. "D" is the Command key in MacVim, for Windows try "C" (Control), or "A" (Alt) (eg. would be Control Alt f).

The Wikia article adds "=gv" to these, which has the effect to adjust the indentation of the block after the move, based on surrounding text. This is confusing so I removed it, and added shortcuts for quickly indenting the selection instead.

" Indent selection left/right (Cmd Shift Left/Right is used for Tab switching)
:vmap <D-A-Left> <gv
:vmap <D-A-Right> >gv

Mind, the same can be done with << and >> but the selection would be lost, so these shortcuts above allow to indent multiple times and still move the block around because the selection is maintained.

My MacVim is configured to switch Tabs with Cmd-Shift-Left/Right so I used Cmd-Alt-Left/Right.

Here's the Tab switching for MacVim (put in .gvimrc with the rest above):

:macm Window.Select\ Previous\ Tab key=<D-S-Left>
:macm Window.Select\ Next\ Tab key=<D-S-Right>

B
Baranina

vim plugin unimpaired.vim [e and ]e


This seems like overkill, I don't think you really need a full plugin for this. 2 lines in a vimrc does exactly what the OP wants
G
Gleb Sabirzyanov

In case you want to do this on multiple lines that match a specific search:

Up: :g/Your query/ normal ddp or :g/Your query/ m -1

Down :g/Your query/ normal ddp or :g/Your query/ m +1


N
Nick Sugar

Here is a solution that works on my machine : MacBook Pro running VIM 8.1

These commands will not delete your lines at the top or bottom of your buffer.

Using the actual symbols that Alt-J and Alt-K output is a workaround for their key-codes not mapping properly in my environment.

Throw this in the old .vimrc and see if works for you.

" Maps Alt-J and Alt-K to macros for moving lines up and down
" Works for modes: Normal, Insert and Visual
nnoremap ∆ :m .+1<CR>==
nnoremap ˚ :m .-2<CR>==
inoremap ∆ <Esc>:m .+1<CR>==gi
inoremap ˚ <Esc>:m .-2<CR>==gi
vnoremap ∆ :m '>+1<CR>gv=gv
vnoremap ˚ :m '<-2<CR>gv=gv

D
David Robért

Your cursor can be on any line. Line numbers are turned on to easily identify line locations. 1st case: Say I'm on line #7 and want to move line #3 to line #9 bring it down the page.

:3m 9 completes the move.

2nd case: I'm still on line #7 but now I want to move line #9 to line #3 bring it up the page.

:9m 2 completes the move. Note the use of 2 for the destination instead of 3.

Note: the cursor will move to the move destination location. If I want are need to go back to line #7 simply use :7

3rd case: move a range of lines. Say, 9 thru 12 where line 9 ends up on on line 3

:9,12m 2 completes the move. image of: A terminal playpen with Vim open for move experimenting


J
Ji Han

:m.+1 or :m.-2 would do if you're moving a single line. Here's my script to move multiple lines. In visual mode, Alt-up/Alt-down will move the lines containing the visual selection up/down by one line. In insert mode or normal mode, Alt-up/Alt-down will move the current line if no count prefix is given. If there's a count prefix, Alt-up/Alt-down will move that many lines beginning from the current line up/down by one line.

function! MoveLines(offset) range
    let l:col = virtcol('.')
    let l:offset = str2nr(a:offset)
    exe 'silent! :' . a:firstline . ',' . a:lastline . 'm'
        \ . (l:offset > 0 ? a:lastline + l:offset : a:firstline + l:offset)
    exe 'normal ' . l:col . '|'
endf

imap <silent> <M-up> <C-O>:call MoveLines('-2')<CR>
imap <silent> <M-down> <C-O>:call MoveLines('+1')<CR>
nmap <silent> <M-up> :call MoveLines('-2')<CR>
nmap <silent> <M-down> :call MoveLines('+1')<CR>
vmap <silent> <M-up> :call MoveLines('-2')<CR>gv
vmap <silent> <M-down> :call MoveLines('+1')<CR>gv