From b4d29fe06738b1b7b27b163c237dfa6cd0a0c183 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Wed, 26 Aug 2015 02:07:31 -0400 Subject: vim-patch.sh: update for git --- scripts/vim-patch-helper.awk | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 scripts/vim-patch-helper.awk (limited to 'scripts/vim-patch-helper.awk') 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]); - } - } - } -} -- cgit