Answers for "vim move to specific line"

1

move a line to another line vim

--- second line ---
--- third line ---
--- first line ---

# Move your cursor on the "first line" (the third line), use the *move* command and
# pass your desired line number as an argument. Hit enter.
#
# :3 --> <ENTER> --> :m0 --> <ENTER>
#
# or...
#
# :3m0 --> <ENTER>
Posted by: Guest on April-07-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language