1. 24 2月, 2015 5 次提交
    • B
      Merge pull request #31 from davidcelis/man-page · 0cb721a6
      Ben S 提交于
      Add a man page entry for exa
      0cb721a6
    • B
      Merge pull request #34 from jgilchrist/master · ef58c30b
      Ben S 提交于
      Fix a missing '/' in symlink targets
      ef58c30b
    • J
      Fix a missing '/' in symlink targets · 96cab9cd
      Jonny Gilchrist 提交于
      In cases where symlink targets were more than a single directory down,
      exa did not print the '/' targets when separating directories, resulting
      in the following output:
      
          symlink => dirAdirBdirC/file
      
      Instead of
      
          symlink => dirA/dirB/dirC/file
      
      By adding a '/' character after each component of the filename, this
      error is fixed.
      96cab9cd
    • D
      Add a man page entry for exa · def48dc6
      David 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: NDavid Celis <me@davidcel.is>
      def48dc6
    • B
      Allow --tree without --recurse · ea1b3cae
      Ben S 提交于
      See #24
      ea1b3cae
  2. 23 2月, 2015 19 次提交
  3. 22 2月, 2015 15 次提交
  4. 21 2月, 2015 1 次提交
    • B
      Upgrade to latest Rust · b2ed264b
      Ben S 提交于
      - Feature flags changes (old_io, old_path)
      - Slice syntax changes ([] -> [..])
      b2ed264b