Skip to content

Instantly share code, notes, and snippets.

@suhaotian
Created August 2, 2014 13:17
Show Gist options
  • Save suhaotian/00d731b027fce46d3f42 to your computer and use it in GitHub Desktop.
Save suhaotian/00d731b027fce46d3f42 to your computer and use it in GitHub Desktop.
snippet format
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
snipfile=sys.argv[1]
content=''
for line in open(snipfile).readlines():
if line[0] != '#' and line[0:7] != 'snippet':
line='\t'+line
content=content+line
open(snipfile,'w').write(content)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment