diff --git a/src/syncdraw/TODO b/src/syncdraw/TODO
index 6489b7baf86de6e347f76ed2658163311609dde8..a2d882d6e783f154931658c4ad78920826c599f4 100644
--- a/src/syncdraw/TODO
+++ b/src/syncdraw/TODO
@@ -12,4 +12,19 @@ Fast mouse movement in draw modes leaves holes
 "Skins" to set the attributes and box style?  Some people may LIKE ugly
 Set the application title to "SyncDraw" or something... currently left blank somehow
 syncdraw.config should become syncdraw.ini
-
+Properly save 80-column drawings... possibly warn first?
+	Best method (using movement codes) is as follows:
+		At Start of 80-column line:
+			1) Move down one line (Using LF - force scroll if it will happen)
+			2) Move up one line (back to original position)
+			3) Save position
+		At End of 80-column line:
+			1) Restore position
+			2) Move down one line using CR/LF to ensure a proper end of line
+		On last line, do not do special start/end unless the last line is 80 columns.
+	Second best method (for types without movement):
+		At end of 80-column line, instead of \r\n, use <space><backspace>
+			- This method will not work correctly for non 80-column terminals
+			- Can result in overly long lines... breaking things which use a
+			  fixed-length line buffer while reading input files (ex: ddplus doors)
+Support loading, editing, and ANSI-selecting console fonts