- cleanup the code
- add comments and such
- add backwards search
- fix wide char (utf8) delete during input
- input tab scroller with zipper
- add cursor
- add walker that keeps track of previous and next file
struct walker { void *prev; /* iter to previous ent */ void *curr; /* iter to current ent */ void *next; /* iter to next ent */ int count; /* number of files to zip */ };
- add walker that keeps track of previous and next file