diff options
Diffstat (limited to 'scripts/vim-patch-helper.awk')
-rw-r--r-- | scripts/vim-patch-helper.awk | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/vim-patch-helper.awk b/scripts/vim-patch-helper.awk deleted file mode 100644 index 5a089fb0ec..0000000000 --- a/scripts/vim-patch-helper.awk +++ /dev/null @@ -1,18 +0,0 @@ -#/usr/bin/env awk -f -BEGIN { - FS="|"; -} -{ - if ($2 == "") { - print($1) - } else { - n=split($2,ary,", "); - for (i=1;i<=n;i++) { - if (match(ary[i], /tag: /)) { - gsub(/[()]/, "", ary[i]); - sub(/ *tag: /, "", ary[i]); - print(ary[i]); - } - } - } -} |