aboutsummaryrefslogtreecommitdiff
path: root/vim/after/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2014-10-06 00:05:06 +1300
committerTom Ryder <tom@sanctum.geek.nz>2014-10-06 00:05:06 +1300
commit96a3fcb400ea512570be29c0de604bb0a2d20836 (patch)
tree31517f848ce88f673398c49c400914ab6e559952 /vim/after/plugin
parentCorrect choice of submod protocol (diff)
downloaddotfiles-96a3fcb400ea512570be29c0de604bb0a2d20836.tar.gz
dotfiles-96a3fcb400ea512570be29c0de604bb0a2d20836.zip
Remove unneeded after script for Tabular
Diffstat (limited to 'vim/after/plugin')
-rw-r--r--vim/after/plugin/tabular.vim11
1 files changed, 0 insertions, 11 deletions
diff --git a/vim/after/plugin/tabular.vim b/vim/after/plugin/tabular.vim
deleted file mode 100644
index 38b555c7..00000000
--- a/vim/after/plugin/tabular.vim
+++ /dev/null
@@ -1,11 +0,0 @@
-" Only run this if function available
-if !exists(':AddTabularPattern')
- finish
-endif
-
-" Shortcut patterns for Tabular; first colon, semicolon, comma, equals sign
-AddTabularPattern! f: /^[^:]*\zs:/
-AddTabularPattern! f; /^[^;]*\zs;/
-AddTabularPattern! f, /^[^,]*\zs,/
-AddTabularPattern! f= /^[^=]*\zs=/
-