thisisparker / cursewords

:pencil: Terminal-based crossword puzzle solving interface
GNU Affero General Public License v3.0
248 stars 28 forks source link

Screen draw should happen in one pass #33

Closed thisisparker closed 3 years ago

thisisparker commented 3 years ago

Currently, cursewords draws the initial grid, the numbers, any existing fill, and the first clue incrementally. If those were to happen in one pass, the output could be e.g. piped to a text file as an additional feature. (I think it'd also be an important precursor to being able to simply redraw the screen, which I'd need to accommodate resizing and stuff, as mentioned in #5)

thisisparker commented 3 years ago

Alright, I think this is handled with 6129176f77f4137d05816eb1335c20016a5d3e0f! Good work everyone