1. 24 3月, 2019 1 次提交
  2. 21 11月, 2018 1 次提交
  3. 27 10月, 2018 1 次提交
  4. 24 10月, 2018 1 次提交
  5. 21 10月, 2018 1 次提交
  6. 05 10月, 2018 1 次提交
  7. 06 12月, 2017 1 次提交
  8. 05 10月, 2017 1 次提交
  9. 30 9月, 2017 1 次提交
  10. 14 9月, 2017 2 次提交
    • B
      Flip the new/old order, and add suggestion for -lt · c475cccc
      Benjamin Sago 提交于
      I changed my mind about which way round sorting by “newest” or by “oldest” should actually go. If you’re listing a large directory, you see the last lines of the output first, so these files should be the ones with the largest whatever the sort field is. It’s about sorting *last*, not sorting *first*. Sorting by size wouldn’t say “sorts smallest files first”, it would say “sorts largest files last”. Right?
      
      Also, add a new suggestion that warns against “ls -lt”.
      c475cccc
    • B
      Add more modified date aliases · 0fefc78c
      Benjamin Sago 提交于
      I don’t really see the modified date as the *modified* date, rather just the *date* field, because it’s the date field I refer to like 99.9% of the time. So now it has aliases to match.
      
      Also are included are aliases for the reverse order, because I’d rather write “new” than “the reverse of old”.
      0fefc78c
  11. 05 9月, 2017 1 次提交
  12. 21 8月, 2017 1 次提交
    • B
      Default to sorting case-insensitively · 57c647fe
      Benjamin Sago 提交于
      This was touched on in #209 where I got the docs wrong compared to the actual implementation, but after thinking about it, I’d like to switch it round. (The --sort=Name and --sort=name difference has also been switched.) See the big ol’ comment for my reasons.
      
      Because this changes core functionality, it broke many, many tests. You can see that this doesn’t change the -star- tests because the shell, rather than exa, orders the globbed files.
      
      I kept on forgetting which way round Sensitive and Insensitive went, so I named them after the effect they have.
      57c647fe
  13. 06 8月, 2017 1 次提交
  14. 06 7月, 2017 1 次提交
  15. 29 6月, 2017 2 次提交
  16. 07 5月, 2017 1 次提交
    • B
      Make all the option descriptions the same · e2f73927
      Benjamin Sago 提交于
      The old option descriptions were all written at different times, and needed some consistency. This makes everything consistent between the help text, README, man page, and shell completions, and fixes some mistakes made when writing them.
      
      This also adds the missing options to the man page, fixing #175.
      e2f73927
  17. 11 4月, 2017 1 次提交
  18. 31 10月, 2016 1 次提交
  19. 30 10月, 2016 1 次提交
  20. 08 10月, 2016 1 次提交
    • B
      Replace the testcases script with a Vagrant VM · 54067bf7
      Benjamin Sago 提交于
      See the README section for more details. Basically, with this way, we can store a bunch of existing valid exa outputs, change a VM's environment to match our values, then check that exa still works by comparing outputs.
      54067bf7
  21. 24 5月, 2016 1 次提交
  22. 07 1月, 2016 1 次提交
  23. 24 11月, 2015 1 次提交
    • B
      Update screenshots · f3e6a996
      Ben S 提交于
      GitHub's new, wider view makes two screenshots side-to-side look nicer than one.
      f3e6a996
  24. 19 11月, 2015 1 次提交
  25. 04 11月, 2015 3 次提交
  26. 30 10月, 2015 1 次提交
  27. 02 10月, 2015 1 次提交
  28. 21 5月, 2015 1 次提交
  29. 07 5月, 2015 1 次提交
  30. 11 4月, 2015 1 次提交
  31. 04 4月, 2015 1 次提交
  32. 11 3月, 2015 1 次提交
  33. 24 2月, 2015 1 次提交
    • D
      Add simple Makefile to build and install exa · 714b9c1f
      David Celis 提交于
      This patch adds a Makefile that will build and install exa along with
      its recently added manual page. This provides a little bit of a nicer
      installation path while we wait for Cargo to, hopefully, provide its own
      built-in installation method for packages that contain binaries.
      Signed-off-by: NDavid Celis <me@davidcel.is>
      714b9c1f
  34. 23 2月, 2015 1 次提交
  35. 22 2月, 2015 2 次提交
    • B
      Add sort-by-date options · a4e17193
      Ben S 提交于
      These were completely missing because I forgot about them... I added sorting functionality before I added date functionality, but it turns out I didn't even need the datetime library to do this!
      
      However, this implementation feels incomplete. If you sort by the accessed date, it still displays the modified date, so the dates still look out of order. If I were to change the date column for the user, though, then there would still be no header to signify that the column has changed. I'm not sure how to proceed with this, but this is still missing functionality, so in it goes.
      a4e17193
    • B
      Add link to README · 16346731
      Ben S 提交于
      16346731