summary refs log tree commit diff
path: root/README.7 (follow)
Commit message (Expand)AuthorAge
* Attempt to keep "security" in README accurateJune McEnroe2021-07-13
* Move security to the features listJune McEnroe2021-06-28
* Encourage packagers to patch in text macrosJune McEnroe2021-06-24
* Add mailing list archive to READMEJune McEnroe2021-06-17
* Remove no longer needed advice about mandirJune McEnroe2021-05-04
* Fix README typo 1.7June McEnroe2021-03-18
* Add donation link to README 1.6June McEnroe2021-02-08
* Add Repology links to READMEJune McEnroe2021-01-28
* Add protocol coverage to non-features listJune McEnroe2021-01-25
* Move mention of pledge(2) and unveil(2) to READMEJune McEnroe2021-01-25
* Add example tmux(1) configKlemens Nanni2021-01-18
* Rename ignore code to filterJune McEnroe2021-01-16
* Add topic diffing to notable features 1.3June McEnroe2020-11-11
* Factor buffer out of uiJune McEnroe2020-09-01
* Say for instead of withJune McEnroe2020-08-05
* Mention LibreTLS in install instructionsJune McEnroe2020-08-04
* Fix --mandir rendering in READMEJune McEnroe2020-08-03
* Support --prefix and --mandir in configure script 1.1June McEnroe2020-07-23
* Rewrite configure script for all platformsJune McEnroe2020-07-23
* Add link to "IRC Suite" post in READMEJune McEnroe2020-07-08
* Add OpenBSD to READMEJune McEnroe2020-06-11
* Don't compress man page or use configure on FreeBSDJune McEnroe2020-05-23
* Update email addressesJune McEnroe2020-05-05
* Add split scrolling to READMEJune McEnroe2020-04-06
* Add note about symlinking /etc/ssl/cert.pemJune McEnroe2020-04-04
* Mention running ldconfig after editing /etc/ld.so.confJune McEnroe2020-04-01
* Add note about building LibreSSL manuallyJune McEnroe2020-04-01
* Add notes on how to view README.7June McEnroe2020-03-31
* Add pounce to README's SEE ALSOJune McEnroe2020-03-31
* Update features listJune McEnroe2020-03-31
* Add /ignore message filtering patternsJune McEnroe2020-03-31
* Add logging functionsJune McEnroe2020-03-25
* Add sandman wrapperJune McEnroe2020-02-12
* Document scripts in READMEJune McEnroe2020-02-12
* Add note about setting PKG_CONFIG_PATHJune McEnroe2020-02-11
* Add INSTALLING section to READMEJune McEnroe2020-02-11
* Add READMEJune McEnroe2020-02-11
d9&follow=1'>Factor 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