From 70b3c166a874b3cd0f1acb19615791821752daf8 Mon Sep 17 00:00:00 2001 From: Roman Zolotarev Date: Sat, 20 Apr 2019 06:46:47 +0000 Subject: [PATCH] update index (fix indentation) --- index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.md b/index.md index 50901f5..d4b5393 100644 --- a/index.md +++ b/index.md @@ -191,7 +191,7 @@ width = 40 ## Convert to lowercase - :%s/.*/\L&/ + :%s/.*/\L&/ ## Join all lines @@ -214,8 +214,8 @@ Select 3rd column separated by colon (`:`) ## Insert the sum of a list of numbers after an arbitrary number of lines -1) mark the first line: `mk` -2) mark the last line: `ml` +(1) mark the first line: `mk` +(2) mark the last line: `ml`
 :'k,'l!awk 'END{print "total:", i}{i+=$1; print}'