Vim
Append a text at the end of several lines
:%s/$/text to append/
- You can add
gc
at the end if you want confirmation for each replacement like:%s/$/text to append/gc
- To append the text only to some lines say between line 10 to 27
:10,27s/$/text to append/
Ref : Stackover Flow
To add same text at the beginning of several consecutive lines
- Visually select a block using Ctrl+v followed by arrow keys.
- Without Escaping Shift+i and type whatever text you want (say
#
to comment several lines. You can type as many characters as you need.) Then
Esc
Format text
This is useful when you write long text. When writing, go on typing to put the
thoughts on paper the computer. Later one was use format commands to make
it look better.
gqap
: Format the current paragraph
It will make all the lines of <textwidth>
long by adding a line break where
required.
While it does not matter for markdown (since the rendered HTML doesn't care when you are looking at the raw markdown, the
about line breaks anyway) but
long line trouble me.