summary refs log tree commit diff
path: root/edit.c
AgeCommit message (Collapse)Author
2019-10-03Add C-u and move underline to C-_Curtis McEnroe
2019-07-27Make copyright headers consistentCurtis McEnroe
2019-02-21Remove ROT13Curtis McEnroe
It's just not convenient when it can only do the whole line...
2019-01-24Remove FreeBSD-specific iswascii callCurtis McEnroe
2018-12-16Add M-? to apply ROT13Curtis McEnroe
2018-09-13Fix weird tab-complete after commaCurtis McEnroe
I have no idea why I did this.
2018-09-12Use formatParse split to position input cursorCurtis McEnroe
2018-09-02Use PascalCase for constantsCurtis McEnroe
Begone underscores.
2018-08-20Remove unnecessary includeCurtis McEnroe
2018-08-20Add wcsnchr, wcsnrchr, awcsntombsCurtis McEnroe
This eliminates calls to editHead and editTail inside edit.c. Oh god I'm sorry for following libc naming conventions for this stuff.
2018-08-10Become multi-channelCurtis McEnroe
There's a lot of UI missing for it, but it technically works.
2018-08-09Add M-b, M-f, M-DEL, M-d, C-wCurtis McEnroe
2018-08-08Add commands to tab completeCurtis McEnroe
2018-08-08Factor out line editing to edit.cCurtis McEnroe