about summary refs log tree commit diff
path: root/url.c (follow)
Commit message (Collapse)AuthorAge
* Make copyright headers consistentJune McEnroe2019-07-27
|
* Use const char *argv[] signaturesJune McEnroe2018-10-28
| | | | C is really weird about this stuff, but this makes more sense to me.
* Add more URL schemesJune McEnroe2018-10-22
|
* Add urlOpenMatchJune McEnroe2018-09-11
|
* Add /man commandJune McEnroe2018-09-10
|
* Fix reverse iteration in urlOpenJune McEnroe2018-09-08
|
* Move event loop to event.cJune McEnroe2018-09-06
|
* Use PascalCase for constantsJune McEnroe2018-09-02
| | | | Begone underscores.
* Fix /open ranges by passing all URLs to open(1)June McEnroe2018-08-12
| | | | | This is going to be incompatible with xdg-open since it takes only one URL at a time. Write a wrapper script.
* Become multi-channelJune McEnroe2018-08-10
| | | | There's a lot of UI missing for it, but it technically works.
* Move process spawning onto the event loopJune McEnroe2018-08-10
| | | | | | Child processes weren't being reaped before, either. I wanted to have a function called readEmAndReap but the reaping should actually happen in a signal handler.
* Add URL detection, listing and openingJune McEnroe2018-08-09
Might also add /copy, like /open.