update index (fix indentation)

This commit is contained in:
Roman Zolotarev 2019-04-20 06:46:47 +00:00
parent 190821ba56
commit 70b3c166a8
1 changed files with 3 additions and 3 deletions

View File

@ -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`
<pre>
:'k,'l!awk 'END{print "<em>total:</em>", i}{i+=$1; print}'