From bf5cacf5b8ab9da6b55fa4a4f947101ad19ad43a Mon Sep 17 00:00:00 2001 From: mischa Date: Fri, 19 Apr 2019 18:57:09 +0200 Subject: [PATCH] invert all lines, suggested by @nrn@bsd.networks --- index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.md b/index.md index 376f33d..79f8948 100644 --- a/index.md +++ b/index.md @@ -128,6 +128,10 @@ Helpful documents: :g/

/+,/<\/p>/-!fmt -40 +#### Invert the order of all lines, move (m) all lines to 0 + + :g/1*/m0 + #### Swap "Lastname, Firstname" to "Firstname, Lastname" :%s/\(.*\), \(.*\)/\2 \1/