mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-23 00:03:27 +01:00
Revert "Pass '--mouse' to less versions >= 551"
This reverts commit cb21b74ecd
.
This commit is contained in:
parent
3a195be14e
commit
ce583eb9bf
@ -6,8 +6,6 @@
|
|||||||
in the header. This is useful when piping input into `bat`. See #654 and #892 (@neuronull).
|
in the header. This is useful when piping input into `bat`. See #654 and #892 (@neuronull).
|
||||||
- Added a new `--generate-config-file` option to creat an initial configuration file
|
- Added a new `--generate-config-file` option to creat an initial configuration file
|
||||||
at the right place. See #870 (@jmick414)
|
at the right place. See #870 (@jmick414)
|
||||||
- When using `less` version 551 or newer, `bat` will now pass the `--mouse` argument, allowing
|
|
||||||
for (better) mouse scrolling support in some terminals, see #904
|
|
||||||
|
|
||||||
## Bugfixes
|
## Bugfixes
|
||||||
|
|
||||||
|
@ -82,13 +82,11 @@ impl OutputType {
|
|||||||
p.arg("--quit-if-one-screen");
|
p.arg("--quit-if-one-screen");
|
||||||
}
|
}
|
||||||
|
|
||||||
let less_version = retrieve_less_version();
|
|
||||||
|
|
||||||
// Passing '--no-init' fixes a bug with '--quit-if-one-screen' in older
|
// Passing '--no-init' fixes a bug with '--quit-if-one-screen' in older
|
||||||
// versions of 'less'. Unfortunately, it also breaks mouse-wheel support.
|
// versions of 'less'. Unfortunately, it also breaks mouse-wheel support.
|
||||||
//
|
//
|
||||||
// See: http://www.greenwoodsoftware.com/less/news.530.html
|
// See: http://www.greenwoodsoftware.com/less/news.530.html
|
||||||
match less_version {
|
match retrieve_less_version() {
|
||||||
None => {
|
None => {
|
||||||
p.arg("--no-init");
|
p.arg("--no-init");
|
||||||
}
|
}
|
||||||
@ -97,16 +95,6 @@ impl OutputType {
|
|||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Passing '--mouse' allows mouse scrolling in terminals which do not
|
|
||||||
// support "fake scrolling", see https://github.com/sharkdp/bat/issues/904
|
|
||||||
// The '--mouse' argument is only supported in less 551 or higher.
|
|
||||||
match less_version {
|
|
||||||
Some(version) if version >= 551 => {
|
|
||||||
p.arg("--mouse");
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
p.args(args);
|
p.args(args);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user