summaryrefslogtreecommitdiffstats
path: root/man
AgeCommit message (Collapse)Author
2021-12-06[baseline] - fix docs and remove gitignoreMax Zhuravsky
2021-11-26[no-color] - add unit test and docMax Zhuravsky
2021-04-12Explain Git characters in man pageBenjamin Sago
Fixes GH-778.
2021-04-11Improve help text for -d flagBenjamin Sago
Fixes GH-202.
2021-04-01Merge pull request #813 from b05902132/numeric_gid_uidBenjamin Sago
Add options for -n or --numeric-gid-uid.
2021-03-31Use --numeric instead of --numeric-uid-gid.b05902132
2021-03-29Merge pull request #762 from ariasuni/warm-when-git-feature-is-disabledBenjamin Sago
Warm when git feature is disabled instead of ignoring flags
2021-03-19Add options for -n or --numeric-gid-uid.b05902132
This option is only avaialable in -l. There's test for rendering, but no test for option parsing. (I don't understand that section of code.)
2021-02-28chore: PR feedbackStuart Carnie
2020-12-10Tell in the man that some flags needs exa built with git supportariasuni
2020-10-24Introduce EXA_ICON_SPACING environment variablebetter-iconsBenjamin Sago
This commit remove the extra space that was added between icons and file names in commit 128fadd, and adds an option to put them back. Re-fixes GH-619 and fixes GH-541.
2020-10-13Convert manual pages to MarkdownBenjamin Sago
This removes the "raw" man pages and converts them to Markdown, adding a build step using pandoc that converts them. Having the man pages in Markdown makes them much, much easier to write and keep updated, at the cost of not having the raw formats easily available. Hopefully having the command to generate them in the Justfile will be enough. It also splits out the EXA_COLORS environment variable into its own page, because it took up just under half of the one for the exa binary.
2015-06-07Update man page with new optionsBen S
2015-02-23Add a man page entry for exaDavid Celis
This patch adds a manual page that can be parsed and outputted by the `man` command. The help command is useful, but many UNIX users have a certain reflex to check for manual pages. It would be awesome to be able to type `man exa` and see some output! Some notes: * This manual page was hand crafted. I had hoped to find some Rust utility that could generate manual pages to prevent having to change this file whenever changes to options are made. There are tools to write manual pages in a nicer syntax and then convert them into the groff syntax, but I hesitated to add more tools to the build process. This might make the file more difficult to maintain, but unless exa's signature changes frequently, it should be okay. * The manual page isn't automatically copied into the /usr/local/share/man/man1 directory, where it would need to be for `man` to read it. My first inkling to have installation be a nice process would be to craft a Makefile that will run `cargo build --release`, copy the binary into /usr/local/bin, and copy the man page into the aforementioned directory. I can handle that in this PR or another one if you like the idea of a Makefile to ease installation! Signed-off-by: David Celis <me@davidcel.is>