abcde
and for the string next to it, separated by spaces.
a
B
c
d
e
I'd like to deploy vertically as shown in , but is there a command that makes this behavior simple for Vim?
(On the other hand, it seems that Shift+j can do the "vertical alignment" operation, but I couldn't find a way to do the heading operation...)
Thank you for your cooperation.
vim
You can also do
next to it, separated by spaces:s//\r/g
on the string
I think you can replace the blank space with a new line below.
:%!tr''\n'
Enter :
and then %!tr''\n'
.
%
covers all lines, so if you only want to cover a specific line, read the line number.
If %
is line number 1, line number 2, line number 1 to line number 2.
© 2024 OneMinuteCode. All rights reserved.