fixing submodules
[stack/conf/vim.git] / addons / TagHighlight / plugin / TagHighlight / TagHighlight.py
diff --git a/addons/TagHighlight/plugin/TagHighlight/TagHighlight.py b/addons/TagHighlight/plugin/TagHighlight/TagHighlight.py
deleted file mode 100644 (file)
index d9014bd..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/env python
-# Tag Highlighter:
-#   Author:  A. S. Budden <abudden _at_ gmail _dot_ com>
-# Copyright: Copyright (C) 2009-2011 A. S. Budden
-#            Permission is hereby granted to use and distribute this code,
-#            with or without modifications, provided that this copyright
-#            notice is copied with it. Like anything else that's free,
-#            the TagHighlight plugin is provided *as is* and comes with no
-#            warranty of any kind, either expressed or implied. By using
-#            this plugin, you agree that in no event will the copyright
-#            holder be liable for any damages resulting from the use
-#            of this software.
-
-# ---------------------------------------------------------------------
-
-from __future__ import print_function
-import sys
-
-def main():
-    from module.cmd import ProcessCommandLine
-    from module.worker import RunWithOptions
-    options = ProcessCommandLine()
-    RunWithOptions(options)
-
-if __name__ == "__main__":
-    main()