summary refs log tree commit diff
path: root/bin/Makefile (follow)
Commit message (Collapse)AuthorAge
...
* Add janky X11 graphics frontendJune McEnroe2018-02-07
|
* Add tags targetJune McEnroe2018-02-06
| | | | | | This seems a bit out of character for me, but this is basically free: ctags(1) is part of FreeBSD and Darwin, and vim automatically uses tags. Also the format of tags files is cute.
* Mark mac target phonyJune McEnroe2018-02-04
|
* Set up Makefile for gfxx-cocoa or gfxx-fbJune McEnroe2018-02-04
|
* Separate gfxx and its framebuffer frontendJune McEnroe2018-02-03
|
* Add fbattJune McEnroe2018-02-01
|
* Build any target by defaultJune McEnroe2018-02-01
|
* Add gfxxJune McEnroe2018-02-01
|
* Add fbclockJune McEnroe2018-01-29
|
* Remove color from MakefileJune McEnroe2018-01-29
|
* Add setuid target for briJune McEnroe2018-01-29
|
* Add color.cJune McEnroe2018-01-28
|
* Add portable bins targetJune McEnroe2018-01-28
|
* Add klonJune McEnroe2018-01-22
| | | | | | I've been working on this the past two days. Not playable yet but I think a good start. I enjoy the card and stack representation too much and this is probably why I don't enjoy industry programming as much.
* Remove ishJune McEnroe2017-10-26
| | | | I think I've lost the ability to code...
* Add beginning of very basic shell, ishJune McEnroe2017-10-13
| | | | Following <https://github.com/tokenrove/build-your-own-shell>.
* Regenerate gitignore with allJune McEnroe2017-09-27
|
* Combine pbcopy and pbpaste rulesJune McEnroe2017-09-27
|
* Simplify bins MakefileJune McEnroe2017-09-17
| | | | | Just link the usual libs for everything. Append warnings flags to CFLAGS.
* Move typo words to separate fileJune McEnroe2017-09-15
|
* Add .gitignore target to bins MakefileJune McEnroe2017-09-14
|
* Add typing gameJune McEnroe2017-09-14
|
* Fix bin/Makefile FreeBSD compatibilityJune McEnroe2017-09-06
| | | | | Have to use the same generic rule as sys.mk so it replaces it. Otherwise it only uses the one in sys.mk.
* Move C code to bin, Makefile, AGPLJune McEnroe2017-09-06
roe 2022-02-20Make sure new cap is actually larger than new lengthJune McEnroe 2022-02-20Remove unused mbs.len field from struct EditJune McEnroe 2022-02-19Remove unneeded includes in ui.cJune McEnroe 2022-02-19Reimplement tab completeJune McEnroe 2022-02-19Handle errors from editFn, etc.June McEnroe 2022-02-19Reimplement text macrosJune McEnroe 2022-02-19Factor out input handling to input.cJune McEnroe 2022-02-19Factor out window management to window.cJune McEnroe 2022-02-19Enable -Wmissing-prototypesJune McEnroe In other words, warn when a function is missing static. I don't see why this isn't in -Wextra. 2022-02-19Fix edit.[ch] license notice additional permissionsJune McEnroe 2022-02-19Run line editing testsJune McEnroe I know, it feels wrong. 2022-02-18Implement new line editing "library"June McEnroe Losing tab complete and text macros, for now. This new implementation works on an instance of a struct and does not interact with the rest of catgirl, making it possible to copy into another project. Unlike existing line editing libraries, this one is entirely abstract and can be rendered externally. My goal with this library is to be able to implement vi mode. Since it operates on struct instances rather than globals, it might also be possible to give catgirl separate line editing buffers for each window, which would be a nice UX improvement. 2022-02-18Simplify cursor positioning in inputJune McEnroe Do some extra work by adding the portion before the cursor to the input window twice, but simplify the interaction with the split point. This fixes the awkward behaviour when moving the cursor across colour codes where the code would be partially interpreted up to the cursor. 2022-02-18Fix M-f orderingJune McEnroe 2022-02-12Move sandman build to scripts/MakefileJune McEnroe 2022-02-12Use compat_readpassphrase.c on LinuxJune McEnroe 2022-02-12Copy RPP defines from oconfigureJune McEnroe