mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Turn on the new pager by default, as described in #291
This commit is contained in:
parent
1de819e3de
commit
de2eea05b4
1 changed files with 1 additions and 1 deletions
|
@ -3147,7 +3147,7 @@ bool pager_use_inline(void)
|
||||||
env_var_t var = env_get_string(L"fish_new_pager");
|
env_var_t var = env_get_string(L"fish_new_pager");
|
||||||
if (var.missing_or_empty())
|
if (var.missing_or_empty())
|
||||||
{
|
{
|
||||||
return 0;
|
return 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue