summary refs log tree commit diff
path: root/tab.c
AgeCommit message (Collapse)Author
2018-08-11Fix removing entries during tab completeCurtis McEnroe
Since tabNext starts on match->next, if match gets removed, it should be set to match->prev so that tabNext will start in the same spot.
2018-08-10Become multi-channelCurtis McEnroe
There's a lot of UI missing for it, but it technically works.
2018-08-08Factor out line editing to edit.cCurtis McEnroe
2018-08-07Implement cycling tab completeCurtis McEnroe
Not properly hooked up to the UI yet.
2018-08-07Populate tab-complete listCurtis McEnroe