aboutsummaryrefslogtreecommitdiff
path: root/bin/onl.awk
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-14 10:09:40 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-14 10:09:40 +1300
commitd18c0c237c5fcd7c7d3484eb591cce0a4f8d104b (patch)
treedc5aaf180d8645b021ca18d22583d034b5aafd31 /bin/onl.awk
parentMerge branch 'release/v0.16.0' (diff)
parentBump version number to 0.17.0 (diff)
downloaddotfiles-d18c0c237c5fcd7c7d3484eb591cce0a4f8d104b.tar.gz
dotfiles-d18c0c237c5fcd7c7d3484eb591cce0a4f8d104b.zip
Merge branch 'release/v0.17.0'v0.17.0
* release/v0.17.0: Bump version number to 0.17.0 Move mapleader settings before .vimrc conf source Strip trailing whitespace Check for shellescape() function before using it Force muttrc filetype from ftdetect rules
Diffstat (limited to 'bin/onl.awk')
-rw-r--r--bin/onl.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/onl.awk b/bin/onl.awk
index 89469f3c..30f7e594 100644
--- a/bin/onl.awk
+++ b/bin/onl.awk
@@ -1,7 +1,7 @@
# Flatten input into one single-space separated line with no unprintable chars
# For each line of input ...
-{
+{
# Replace groups of spaces and control characters with one space,
# implicitly re-splitting the fields
gsub(/[\a\b\f\n\r\t\v ]+/, " ")