UltiSnips/plugin/UltiSnips/debug.py
2009-07-10 12:47:54 +02:00

12 lines
148 B
Python

#!/usr/bin/env python
# encoding: utf-8
__all__ = [ "debug" ]
def debug(s):
f = open("/tmp/file.txt","a")
f.write(s+'\n')
f.close()