1. 02 7月, 2014 1 次提交
  2. 30 6月, 2014 4 次提交
  3. 29 6月, 2014 1 次提交
  4. 28 6月, 2014 1 次提交
  5. 27 6月, 2014 1 次提交
    • B
      Highlight groups the user is a member of · b337f917
      Ben S 提交于
      First non-trivial change for a while... because this involves reading from the OS, we should cache as much as we can in memory. So, group membership checking is done immediately after reading a group name, as the group structure has already been populated.
      b337f917
  6. 26 6月, 2014 1 次提交
    • B
      Highlight link number for files with multiple links · baf9f957
      Ben S 提交于
      Curiously enough, this turned out to be helpful today... Git can't
      traverse symlinks, so I had to use hard links instead, and then I had to
      work out which files had more than one link at a glance. If I hadn't
      already had most of exa written, I'd be stuck using find!
      baf9f957
  7. 22 6月, 2014 7 次提交
  8. 21 6月, 2014 2 次提交
  9. 18 6月, 2014 2 次提交
  10. 17 6月, 2014 4 次提交
    • B
      Move file-type detection to its own module · 03ec414d
      Ben S 提交于
      I'd much rather have this separate, as it has the definite potential to
      balloon up to a huge size and end up making the other parts of the file
      module hard to read. But on the other hand, it meant making a few more
      methods public on file... readability over cleanliness, I guess.
      03ec414d
    • B
      Cache readdir results in a Dir object · a5e404da
      Ben S 提交于
      This new object is then passed down to the File, so it can see what files are around it. This means it doesn't need to re-query the filesystem several times per file, instead using the in-memory copy.
      
      Also, switch to using the built-in Path#with_extension method.
      a5e404da
    • B
      Add a bunch more file types · 78771a3a
      Ben S 提交于
      And an extra level of compiled files that don't get highlighted when their source files aren't present. I don't really like having two functions that do (almost) the same thing, but I have to due to the way colouring is done.
      78771a3a
    • B
      Highlight compiled files if their source is present · cce20d59
      Ben S 提交于
      Compiled files with a source present (such as code.o when code.c is present) are now classified as temporary files. If the source isn't present, they're highlighted in a kind of drab colour (using the new 255-colour ability, yay!)
      
      The code does do exists() checks on the filesystem when it could be possible to compare the files to the list of files we got from the call to readdir(), but it doesn't.
      cce20d59
  11. 16 6月, 2014 1 次提交
    • B
      256-colour support · 64770d0a
      Ben S 提交于
      Add a Fixed(u8) constructor to Colour, which represents the 256 colours
      that some terminals support. This means we can:
      
      - stop using black bold to mean grey, which looks weird on terminals
        that haven't been set up to use it;
      - support a *lot* more file type colours.
      
      I'm a little suspicious of how much string allocation is being done in
      colours.rs, but that's a problem for another time.
      64770d0a
  12. 04 6月, 2014 2 次提交
    • B
      Darken file size suffixes · bc4df2cf
      Ben S 提交于
      I think this is necessary because 'bytes' currently has no 'B' suffix, and it's
      kind of hard to distinguish a long number from a suffix.
      bc4df2cf
    • B
      Right-align file sizes · e5e426fc
      Ben S 提交于
      Currently there's only one numeric column, and that's the file size, so it gets
      special treatment.
      
      I was originally going to have a folder file size field be filled up with '-'s
      as far as it could go, leaving it entirely up to the column how its field gets
      formatted. But then I saw just one '-' working just fine, so I left it like
      that. In the first try, columns could do anything they want when padding a
      string (including changing the padding character or just changing it entirely),
      but now there's no point.
      e5e426fc
  13. 03 6月, 2014 1 次提交
  14. 01 6月, 2014 2 次提交
  15. 28 5月, 2014 1 次提交
  16. 27 5月, 2014 1 次提交
  17. 26 5月, 2014 2 次提交
  18. 25 5月, 2014 2 次提交
    • B
      Change format of file sizes to be shorter · b116889a
      Ben S 提交于
      I'm copying ls here because we don't really need the 'B' for bytes to be
      listed every time. I think it looks better the new way. Unlike ls, don't
      list directory sizes, because I've never found the pseudo-sizes they get
      given at all useful.
      
      Also, fix a bug where aligning columns didn't work when the number of
      format characters (like '\x1B' and '[') were different between each
      line.
      b116889a
    • B
      Add colouring for media and compressed files · 4d1aea12
      Ben S 提交于
      4d1aea12
  19. 24 5月, 2014 4 次提交