aboutsummaryrefslogtreecommitdiffstats
path: root/build.py
diff options
context:
space:
mode:
authorVG <vg@devys.org>2015-07-24 17:37:15 +0200
committerVG <vg@devys.org>2015-07-24 17:37:15 +0200
commit531ad8f2baa5fefdf2f92c6473d5098f4bbeb1b5 (patch)
treefad0bcc078b735bd08120f0f02b3a73c1d763d6b /build.py
parentab212a360ed1c0d10a1f6bf02beee28979a30922 (diff)
downloadvim-rst-tables-531ad8f2baa5fefdf2f92c6473d5098f4bbeb1b5.tar.gz
vim-rst-tables-531ad8f2baa5fefdf2f92c6473d5098f4bbeb1b5.tar.bz2
vim-rst-tables-531ad8f2baa5fefdf2f92c6473d5098f4bbeb1b5.zip
remove src and build.py since they are not used
Diffstat (limited to 'build.py')
-rwxr-xr-xbuild.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/build.py b/build.py
deleted file mode 100755
index a700549..0000000
--- a/build.py
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env python
-import os
-
-source_dir = 'src'
-output_dir = 'ftplugin'
-
-
-def build():
- py_src = file(os.path.join(source_dir, 'rst_tables.py')).read()
- vim_src = file(os.path.join(source_dir, 'base.vim')).read()
- combined_src = vim_src.replace('__PYTHON_SOURCE__', py_src)
- if not os.path.exists(output_dir):
- os.mkdir(output_dir)
- output_path = os.path.join(output_dir, 'rst_tables.vim')
- file(output_path, 'w').write(combined_src)
-
-if __name__ == '__main__':
- build()