←back to thread

768 points speckx | 2 comments | | HN request time: 0.001s | source
Show context
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 #
javier123454321 ◴[] No.45674620[source]
:'<,'>s/.*$/> \0/ also
replies(1): >>45676488 #
1. ginsider_oaks ◴[] No.45676488[source]
or even better:

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