1. 27 6月, 2017 2 次提交
  2. 24 6月, 2017 1 次提交
  3. 27 3月, 2017 1 次提交
  4. 30 10月, 2016 2 次提交
    • B
      Basic glob ignoring · 95596297
      Ben S 提交于
      See #97 and recently #130 too.
      
      This allows the user to pass in options such as "--ignore '*.pyc'" to not list any files ending in '.pyc' in the output. It uses the Rust glob crate and currently does a simple split on pipe, without any escaping, so it’s not really *complete*, but is at least something.
      95596297
    • B
      Make the views non-Copy · a6712994
      Ben S 提交于
      This has to be done for when ignore patterns get introduced and have to be stored in a Vec.
      a6712994
  5. 29 8月, 2016 1 次提交
    • B
      Add legal values to error messages · 7e15e0dd
      Brandon W Maister 提交于
      Now when you do `--sort time` instead of saying "unknown option --sort
      time" it will say "unknown options '--sort time' (choices: name...)"
      with all legal options.
      
      This also adds the legal values to the default help text.
      7e15e0dd
  6. 11 6月, 2016 1 次提交
  7. 18 4月, 2016 1 次提交
    • B
      Split up the options module · e9e1161c
      Benjamin Sago 提交于
      The original options was becoming a bit unwieldy, and would have been even more so if I added the same amount of comments. So this commit splits it up.
      
      There's no extra hiding going on here, or rearranging things within the module: (almost) everything now has to be marked 'pub' to let other sub-modules in the new options module to see it.
      e9e1161c