Benjamin Sago
a4d9b5314f
Merge pull request #405 from Don42/feature_only_dirs
...
Flag for only showing directories
2018-09-27 21:01:15 +01:00
Benjamin Sago
3d796cf470
Merge pull request #397 from mopp/use_time_style_env_var
...
Use `TIME_STYLE` environment variable
2018-09-27 20:58:44 +01:00
Benjamin Sago
a8b5534d53
Merge pull request #373 from doy/directory-symlink
...
make exa on symlinks to directories show their contents
2018-09-26 20:58:18 +01:00
Marco 'don' Kaulea
5dffaf3076
Add period for consistency
2018-09-03 09:20:03 +02:00
Marco 'don' Kaulea
33167a2282
Add short option for only-dirs
2018-07-13 17:38:36 +02:00
Marco 'don' Kaulea
054cac6b82
Add option to only display directories
...
This allows printing directory trees without any files, only
showing the structure.
I haven't decided on a letter for the short option.
Implements #401
2018-07-12 18:51:14 +02:00
Thibaut Brandscheid
755876e9b6
fix most clippy warnings
2018-06-19 17:17:39 +02:00
mopp
991781070e
refers TIME_STYLE
environment variable if it exists and the argument is not given
2018-06-15 04:38:32 +09:00
Benjamin Sago
a3b2f2b3f4
Merge pull request #384 from spk/update-log
...
Update log to 0.4 and env_logger to 0.5
2018-05-28 10:50:23 +02:00
Benjamin Sago
55048f7ee2
Merge pull request #380 from kornelski/master
...
Replaced try!() with ?
2018-05-28 10:50:06 +02:00
Benjamin Sago
5438f949c9
Merge pull request #311 from martinlindhe/master
...
adjust some spelling
2018-05-28 10:47:38 +02:00
Laurent Arnoud
eff7122bb2
Update log to 0.4 and env_logger to 0.5
...
No change needed for ansi_term to 0.11
2018-05-03 19:40:04 +02:00
Kornel
2976b487ab
Replaced try!() with ?
2018-04-18 01:16:32 +01:00
Lukas Rysavy
2fc56d45ca
fixed git status not working in directories containing '../'
2018-04-13 22:23:46 +02:00
Alex Soderman
f96a45f45e
fixed icons for grid details mode
2018-04-01 20:43:08 -04:00
Alex Soderman
68954f9142
Added --icons for oneline mode
2018-04-01 19:00:27 -04:00
Alex Soderman
5991bd4ab7
Added icons for --long view
2018-04-01 18:28:31 -04:00
Jesse Luehrs
9bb62fbd63
make exa on symlinks to directories show their contents
...
right now, `exa foo` and `exa foo/` behave differently, which is
confusing.
fixes https://github.com/ogham/exa/issues/192
2018-03-31 05:00:03 -04:00
Alex Soderman
c448b3747f
added icons for video/audio/images
...
remove unnecessary clone
2018-03-27 13:18:49 -04:00
Alex Soderman
fd553227f0
remove underline from icon
2018-03-27 10:58:26 -04:00
Alex Soderman
217d1eefa9
moved icons functionality to grid mode
2018-03-26 17:02:05 -04:00
Alex Soderman
d962889134
Added painting to icon
2018-03-25 12:11:47 -04:00
Alex Soderman
694c4417a0
Implemented icon rendering
2018-03-24 21:18:49 -04:00
Alex Soderman
57e8802977
Added icons mode w/ prepending (icons themselves do not appear yet)
2018-03-22 19:13:02 -04:00
Alex Soderman
67f2fcc748
Added --icons flag
2018-03-20 22:30:41 -04:00
Benjamin Sago
63a1035158
Merge pull request #355 from alexmaco/performance_tweaks
...
Create worker threads only once (for performance)
2018-03-16 17:23:58 +00:00
Benjamin Sago
9896f9ed78
Merge pull request #343 from BenWhitehead/mix-hidden-sorting
...
Add new sort option `.name` and `.Name`
2018-03-16 16:46:55 +00:00
Benjamin Sago
b16a78942c
Merge pull request #366 from dguo/ts-extension
...
Don't treat .ts as a video file extension
2018-03-15 20:42:26 +00:00
Benjamin Sago
3614f5513d
Merge pull request #356 from joshleeb/highlight-lowercase-readme
...
Case Insensitive README.* Files As immediate
2018-03-15 20:41:44 +00:00
Danny Guo
e711dbc0b6
Don't treat .ts as a video file extension
...
It's arguably more frequently used for TypeScript files.
2018-03-14 20:34:46 -04:00
Benjamin Sago
f757300718
Upgrade libgit2
...
The ogham/git2-rs repository that exa uses in the Vagrant VM has also been updated. The only casualty was that some constants got namespaced.
2018-03-11 11:25:06 +00:00
Benjamin Sago
48cdf22f46
Merge pull request #345 from ogham/exa/remove-unused-import
...
remove unused import
2018-03-11 09:43:33 +00:00
Benjamin Sago
9bd0334d1a
Merge pull request #342 from ogham/exa/patch-1
...
Add Bazel and ANT files to immediate files types
2018-03-11 09:41:09 +00:00
Josh Leeb-du Toit
d9c9dbe89e
Case insensitive README.* files are immediate
...
Files with the prefix `README` are now classified as immediate, meaning
they will be highlighted amongst other things, in a case insensitive
way.
2018-02-15 21:55:52 +11:00
Alexandru Macovei
8cbde76b4c
Create worker threads only once (for performance)
...
This improves performance by a factor of at least 2 in large --tree workloads by avoiding the repeated creation/destruction of the pool and containing threads.
Cycling pools also encountered lots lock contention, which accounted for most of the time saved by reusing a single pool.
2018-02-14 03:59:46 +02:00
Ryan Leung
e1a4ed87f2
add #[allow(unused)] for compatibility
2018-02-01 14:52:01 +08:00
Ryan Leung
7fb0347e93
remove unused import
2018-01-31 15:05:20 +08:00
BenWhitehead
a156d96768
Add new sort option .name
and .Name
...
Add two new sort options `.name` and `.Name` which with ignore a leading
`.` if present on the file name before sorting according to `name` and
`Name`.
This new sort is convenient if you want to list hidden and unhidden
files sorted together.
2018-01-30 15:01:56 -08:00
Marco Farrugia
c635031661
Add Bazel and ANT files to immediate files types
2018-01-28 19:26:37 -05:00
ne-sted
5fae489717
Update filetype.rs
...
add `zst` extension
2017-11-20 13:50:08 +02:00
Martin Lindhe
7b1ee01eb5
adjust some spelling
2017-10-31 06:24:31 +01:00
Benjamin Sago
c7497f3778
Display more information for non-release releases
2017-10-08 20:09:46 +01:00
Benjamin Sago
e154b58268
Move EXA_DEBUG variable to vars file
2017-10-08 17:24:50 +01:00
Benjamin Sago
a45bcfe058
Rename broken_arrow to broken_symlink
2017-10-08 17:08:07 +01:00
Benjamin Sago
91334d601c
Use colour traits when possible
2017-10-08 17:08:07 +01:00
Benjamin Sago
59d9e90f20
Replace “mi” colour with “bO” overlay
...
Fixes #288 , but more-or-less as a side-effect.
The “mi” key in LS_COLORS was meant to be used for a missing link path, but it wasn’t really used like that. There was also a bug where control characters in a broken symlink’s path were assumed to be underlined, because that’s what happened in the default colour scheme, but this assumption doesn’t hold when colours were disabled.
The solution to these was not to introduce another configurable colour code, but to start using _overlays_ to alter a bunch of colours at once. The “mi” code will have to be added back later.
2017-10-08 17:08:07 +01:00
Chet Gurevitch
afc9657434
Fix LS_COLORS 01 and 04 detection
2017-10-05 20:55:43 -07:00
Benjamin Sago
9cfc70f4c0
Further shortening
2017-10-02 09:45:55 +02:00
Benjamin Sago
c7748fb1f0
Make these lines less long
2017-10-02 09:43:49 +02:00
Benjamin Sago
937b325e3a
Add some ignored tests for sub-globbing
2017-09-30 09:17:29 +02:00