diff options
author | Yulij Andreevich Lesov <yalesov@gmail.com> | 2016-07-05 02:59:45 -0500 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2016-07-05 09:59:45 +0200 |
commit | bd824d94075fbb2813394ec30c51e3adebb697f8 (patch) | |
tree | 611ad3d85ec0d376eafa7ac4fdbbe09decdc637d | |
parent | c3233deb70b81b2e9be03b548e4593bad9dadd11 (diff) | |
download | vim-polyglot-bd824d94075fbb2813394ec30c51e3adebb697f8.tar.gz vim-polyglot-bd824d94075fbb2813394ec30c51e3adebb697f8.zip |
readability: add newline and comment to generated ftdetect file (#142)
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -75,7 +75,7 @@ copy_dir() { } concat_ftdetect() { - cat ftdetect/* | grep -E '^[^"]' > tmp/polyglot.vim + for f in ftdetect/*; do (echo '" '"$f"; cat "${f}"; echo) >> tmp/polyglot.vim; done rm -f ftdetect/* mv tmp/polyglot.vim ftdetect/ } |