Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 464 Bytes

File metadata and controls

15 lines (15 loc) · 464 Bytes
  • 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 */
      };