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?
In case you want to do this on multiple lines that match a specific search:
:g/Your query/ normal ddp
:g/Your query/ m -1
:g/Your query/ m +1