diff textshaper/main.py @ 37:8cf9a26b9aaa

STUB: textshaper/main.py textshaper/tablify.py
author Jeff Hammel <k0scist@gmail.com>
date Mon, 12 May 2014 10:29:06 -0700
parents 55e0579e2143
children 21b6a9569f21
line wrap: on
line diff
--- a/textshaper/main.py	Sat May 03 14:47:16 2014 -0700
+++ b/textshaper/main.py	Mon May 12 10:29:06 2014 -0700
@@ -12,6 +12,7 @@
 import time
 from .commands import Commands
 from .indent import deindent, indent
+from .tablify import make_csv
 from .whitespace import underscore
 from which import which
 
@@ -41,6 +42,7 @@
     commands.add(indent, 'i')
     commands.add(deindent, 'd')
     commands.add(underscore, 'u')
+    commands.add(make_csv, 'c')
     return commands