mirror of
https://github.com/kennethreitz-archive/krvim.git
synced 2026-06-05 23:40:18 +00:00
Initial import.
This commit is contained in:
Executable
+8
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
if __name__ == '__main__':
|
||||
py_src = file('complexity.py').read()
|
||||
vim_src = file('base.vim').read()
|
||||
combined_src = vim_src % dict(python_source=py_src)
|
||||
file('complexity.vim', 'w').write(combined_src)
|
||||
|
||||
Reference in New Issue
Block a user