d9014bddc98bda2cb6ecc307bd010dd46dd5e139
[stack/conf/vim.git] / addons / TagHighlight / plugin / TagHighlight / TagHighlight.py
1 #!/usr/bin/env python
2 # Tag Highlighter:
3 #   Author:  A. S. Budden <abudden _at_ gmail _dot_ com>
4 # Copyright: Copyright (C) 2009-2011 A. S. Budden
5 #            Permission is hereby granted to use and distribute this code,
6 #            with or without modifications, provided that this copyright
7 #            notice is copied with it. Like anything else that's free,
8 #            the TagHighlight plugin is provided *as is* and comes with no
9 #            warranty of any kind, either expressed or implied. By using
10 #            this plugin, you agree that in no event will the copyright
11 #            holder be liable for any damages resulting from the use
12 #            of this software.
13
14 # ---------------------------------------------------------------------
15
16 from __future__ import print_function
17 import sys
18
19 def main():
20     from module.cmd import ProcessCommandLine
21     from module.worker import RunWithOptions
22     options = ProcessCommandLine()
23     RunWithOptions(options)
24
25 if __name__ == "__main__":
26     main()