sharkdp
e79c5516bf
Bump version, update assets
2018-11-11 12:55:38 +01:00
sharkdp
4776c2a575
Update man page
2018-11-11 12:31:28 +01:00
sharkdp
f98a96c1ed
Update help text
2018-11-11 12:26:39 +01:00
sharkdp
8a3446d219
Update dependencies
2018-11-11 12:17:58 +01:00
David Peter
5d5bf616ca
Update README.md
2018-11-11 12:17:15 +01:00
sharkdp
b68c038db8
Update link to new issue
2018-11-11 11:08:08 +01:00
dependabot[bot]
1117d2f9cb
Bump syntect from 3.0.1 to 3.0.2
...
Bumps [syntect](https://github.com/trishume/syntect ) from 3.0.1 to 3.0.2.
- [Release notes](https://github.com/trishume/syntect/releases )
- [Changelog](https://github.com/trishume/syntect/blob/master/CHANGELOG.md )
- [Commits](https://github.com/trishume/syntect/compare/v3.0.1...v3.0.2 )
Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-11-11 11:08:08 +01:00
David Peter
d0ba5bcb32
Wording
2018-11-11 11:07:55 +01:00
Ricky
f8d39d5624
Resolving requested changes
2018-11-11 11:07:55 +01:00
Ricky
9998e2eac6
Initial commit of updated README for config file formatting
2018-11-11 11:07:55 +01:00
sharkdp
7cac07d845
issue #383 : Handle cases like PAGER=/usr/bin/bat
2018-11-06 19:53:32 +01:00
Rodrigo Orem
148caa1381
Fix code style
2018-11-06 19:35:41 +01:00
Rodrigo Orem
ab27cac0cc
Remove args when change from bat to less
2018-11-06 19:35:41 +01:00
Rodrigo Orem
01fcbf2183
Better placement of bat detection
2018-11-06 19:35:41 +01:00
Rodrigo Orem
8a0c30b385
Avoid endless bat executions with PAGER="bat"
...
From issue #383
2018-11-06 19:35:41 +01:00
Dany Marcoux
bc21c4d0e0
Add openSUSE installation instructions
2018-11-06 19:21:33 +01:00
dependabot[bot]
0800562ba2
Bump content_inspector from 0.2.3 to 0.2.4
...
Bumps [content_inspector](https://github.com/sharkdp/content_inspector ) from 0.2.3 to 0.2.4.
- [Release notes](https://github.com/sharkdp/content_inspector/releases )
- [Commits](https://github.com/sharkdp/content_inspector/compare/v0.2.3...v0.2.4 )
Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-11-05 19:37:58 +01:00
sharkdp
1f9befbcd1
Update SHA1 in TOML submodule
2018-11-05 19:37:23 +01:00
sharkdp
a5c779c518
Update path to TOML syntax remote
2018-11-05 19:23:44 +01:00
dependabot[bot]
f37f100352
Bump lazy_static from 1.1.0 to 1.2.0
...
Bumps [lazy_static](https://github.com/rust-lang-nursery/lazy-static.rs ) from 1.1.0 to 1.2.0.
- [Release notes](https://github.com/rust-lang-nursery/lazy-static.rs/releases )
- [Commits](https://github.com/rust-lang-nursery/lazy-static.rs/compare/1.1.0...1.2.0 )
Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-11-05 07:22:39 +01:00
Nisheet Sinvhal
18d1a3b973
Changed italics to use-italic-text in config
...
Better placing of italics in help and also added long_help for it
2018-11-04 19:40:05 +01:00
Nisheet Sinvhal
dc10246bd2
Linting
2018-11-04 19:40:05 +01:00
Nisheet Sinvhal
44bdae0212
Linting
2018-11-04 19:40:05 +01:00
Nisheet Sinvhal
1ece38a4c4
Changed flag name
2018-11-04 19:40:05 +01:00
Nisheet Sinvhal
e90308e1f8
italics enable|disable working
2018-11-04 19:40:05 +01:00
Nisheet Sinvhal
d702d6740c
Added args
2018-11-04 19:40:05 +01:00
sharkdp
c6a526f99c
Run 'cargo run' only once
2018-11-04 12:24:56 +01:00
sharkdp
278d841408
Move '--paging' arg to config file.
2018-11-04 11:19:49 +01:00
sharkdp
5f576f1ecf
Remove all relevant environment variables during testing
2018-11-04 11:19:49 +01:00
sharkdp
48c6ea6b25
Simplify integration test setup
2018-11-04 11:19:49 +01:00
Ricky
558134f6c8
Changed to unwrap methods, added integration tests
2018-11-04 11:19:49 +01:00
Ricky
1dd57e6d7e
Ran rust fmt
2018-11-04 11:19:49 +01:00
Ricky
20ba84d1fa
Added in environment variable and the result is a file check in config.rs
2018-11-04 11:19:49 +01:00
sharkdp
e81f9b23e6
Fix --show-all
for UTF-16 encoding
2018-11-01 22:00:47 +01:00
sharkdp
50dc4a79b0
Display line-feed as instead of
2018-11-01 22:00:47 +01:00
sharkdp
8fa8f44706
Use ↹
character if tab-width == 1.
2018-11-01 22:00:47 +01:00
sharkdp
ecd862d9ff
Feature: Highlight non-printable characters
...
Adds a new `-A`/`--show-all` option (in analogy to GNU Linux `cat`s option) that
highlights non-printable characters like space, tab or newline.
This works in two steps:
- **Preprocessing**: replace space by `•`, replace tab by `├──┤`, replace
newline by ``, etc.
- **Highlighting**: Use a newly written Sublime syntax to highlight
these special symbols.
Note: This feature is not technically a drop-in replacement for GNU `cat`s
`--show-all` but it has the same purpose.
2018-11-01 22:00:47 +01:00
sharkdp
cbed338c3a
Remove generation code for tabs_ tests
2018-11-01 15:30:58 +01:00
sharkdp
4492d99556
Change default tab width to 4
2018-11-01 15:30:58 +01:00
sharkdp
d96ee2261f
Remove tab-related text
2018-11-01 15:30:58 +01:00
sharkdp
dda27b253b
Allow offset values in --terminal-width
...
Allows the `width` argument to `--terminal-width` to be an offset
instead of an absolute number. Examples:
--terminal-width=80 # Set output width to 80 characters
--terminal-width=-2 # Set output width to actual_width - 2
closes #376
2018-10-31 22:21:22 +01:00
sharkdp
78f26d0caf
Temporarily disable shipping of shell completions
...
closes #372
2018-10-31 22:03:05 +01:00
David Peter
abcd09f869
Remove commented-out code
2018-10-21 22:52:26 +02:00
Sindre Johansen
41a5ff039b
Only use the last argument of {style,plain,number}
2018-10-21 22:52:26 +02:00
Sindre Johansen
155bad3862
Rustfmt
2018-10-21 22:52:26 +02:00
Sindre Johansen
7c98a1c901
When specifying style multiple times the last occurence wins
...
Closes : #367
2018-10-21 22:52:26 +02:00
David Peter
c1246fcd53
Update help text
2018-10-21 22:42:11 +02:00
David Peter
9f401ea122
Update docstring
2018-10-21 22:42:11 +02:00
Park Juhyung
9c782fb692
Fix format error
2018-10-21 22:42:11 +02:00
Park Juhyung
154186a58d
Add --pager option
2018-10-21 22:42:11 +02:00