←back to thread

768 points speckx | 4 comments | | HN request time: 0s | source
1. yegle ◴[] No.45673912[source]
The markdownquote can be replaced by (at least in vim):

^ (jump to the beginning)

ctrl+v (block selection)

j (move cursor down)

shift+i (bulk insert?)

type ><space>

ESC

replies(1): >>45674620 #
2. javier123454321 ◴[] No.45674620[source]
:'<,'>s/.*$/> \0/ also
replies(1): >>45676488 #
3. ginsider_oaks ◴[] No.45676488[source]
or even better:

  :'<,'>s/^/> /
replies(1): >>45676562 #
4. javier123454321 ◴[] No.45676562{3}[source]
Duh, yeah youre right. This wins.