summary refs log tree commit diff
path: root/home (follow)
Commit message (Expand)AuthorAge
* Remove mkshJune McEnroe2020-05-07
* Emulate 1sh prompts in bashJune McEnroe2020-05-07
* Update nvim MANPAGERJune McEnroe2020-05-07
* Remove bman functionJune McEnroe2020-05-06
* Add git-password script to get a password from git-credentialJune McEnroe2020-05-04
* Add Markus Kuhn's wcwidth implementationJune McEnroe2020-04-21
* Add np scriptJune McEnroe2020-03-31
* Remove .psqlrcJune McEnroe2020-03-27
* Only cd in .profile if /usr/home existsJune McEnroe2020-03-27
* Remove gpg configurationJune McEnroe2020-03-27
* Move .kshrc to .mkshrcJune McEnroe2020-03-27
* Remove wiki scriptJune McEnroe2020-02-20
* Simplify macOS notify-sendJune McEnroe2020-02-12
* Add \d to replace .Dd macroJune McEnroe2020-01-25
* Replace gr alias with git resetJune McEnroe2020-01-04
* Add \S to sort inside bracesJune McEnroe2019-12-26
* Respect mailmap in gl pretty formatJune McEnroe2019-12-20
* Disable signing commitsJune McEnroe2019-12-20
* Add .editrc to set vi bindingsJune McEnroe2019-12-15
* Set ssh port for git.causal.agencyJune McEnroe2019-12-15
* Allow cd-ing into a fileJune McEnroe2019-12-05
* Only add existing directories to PATHJune McEnroe2019-11-29
* Clear PATH before populating it againJune McEnroe2019-11-27
* Add bman alias for FreeBSD man pagesJune McEnroe2019-11-22
* Remove Linux aliases from .shrcJune McEnroe2019-11-22
* Remove 1sh env.shJune McEnroe2019-11-21
* Use .profile, .shrc, .historyJune McEnroe2019-11-21
* Add \? to promptJune McEnroe2019-11-20
* Remove color from 1sh promptsJune McEnroe2019-11-20
* Add GPL header templateJune McEnroe2019-11-06
* Use initial in git authorJune McEnroe2019-11-01
* Mark ' for \aJune McEnroe2019-10-28
* Set the write variable for nvim man modeJune McEnroe2019-10-14
* Update neovim 0.4.2June McEnroe2019-10-02
* Remove host thursdayJune McEnroe2019-08-27
* Clean up home filesJune McEnroe2019-07-27
* Fix shell script style in ~/.local/binJune McEnroe2019-07-27
* Add wiki scriptJune McEnroe2019-07-24
* Use env.sh as 1sh todo listJune McEnroe2019-07-01
* Clean up 1sh prompt settingJune McEnroe2019-06-29
* Rename catsh to 1shJune McEnroe2019-06-28
* Set HISTSIZE in catshJune McEnroe2019-06-28
* Set LESS=FRXJune McEnroe2019-06-19
* Alias date=ddateJune McEnroe2019-06-16
* Clean up catsh configJune McEnroe2019-04-18
* Rename cash config to catshJune McEnroe2019-04-18
* Color python imports as StatementJune McEnroe2019-04-15
* Move /opt/pkg after /usr in PATHJune McEnroe2019-02-20
* Set man_hard_wrap in nvimJune McEnroe2019-02-20
* Color format specifiers light cyan in vimJune McEnroe2019-02-15
&follow=1'>Handle 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