about summary refs log tree commit diff stats
path: root/src/loader/file.nim
Commit message (Collapse)AuthorAgeFilesLines
* Add w3m-cgi-compat optionbptato2023-10-011-5/+1
|
* remove unnecessary toTable callsbptato2023-09-201-3/+2
| | | | | | | We did this to please the compiler at one point, but it seems to be fine to remove now. (Also, use withValue when possible.)
* fix compilation on 1.6.14bptato2023-09-201-1/+1
|
* ftp, file: better dirlist, fix FTP path issuebptato2023-09-191-14/+33
| | | | | | | | | * Dirlist is now unified across ftp and file loaders. It's basically a copycat of w3m's FTP dirlist, because I like how it looks. * We now hack around the cURL FTP path problem by always prepending a slash to the path. This is probably closer aligned with expectations than the default behavior.
* move around more modulesbptato2023-09-141-0/+107
* ips -> io/ * loader related stuff -> loader/ * tempfile -> extern/ * buffer, forkserver -> server/ * lineedit, window -> display/ * cell -> types/ * opt -> types/