mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 15:16:40 +08:00
Reenable command descriptions on macOS 10.15.4+
Further work on #6270, as recommended in 611a6589ea
.
[ci skip]
This commit is contained in:
parent
a1494c9c22
commit
f36c82ce86
|
@ -6,9 +6,8 @@
|
|||
# `apropos` with their own, which presumably doesn't have the same problem.
|
||||
if test (uname) = Darwin
|
||||
set -l darwin_version (uname -r | string split .)
|
||||
# macOS 15 is Darwin 19, this is an issue at least up to 10.15.3.
|
||||
# If this is fixed in later versions uncomment the second check.
|
||||
if test "$darwin_version[1]" = 19 # -a "$darwin_version[2]" -le 3
|
||||
# macOS 15 is Darwin 19, this is an issue up to and including 10.15.3.
|
||||
if test "$darwin_version[1]" = 19 -a "$darwin_version[2]" -le 3
|
||||
set -l apropos (command -s apropos)
|
||||
if test "$apropos" = /usr/bin/apropos
|
||||
function __fish_complete_man
|
||||
|
|
|
@ -9,9 +9,8 @@
|
|||
# So we disable this entirely in that case.
|
||||
if test (uname) = Darwin
|
||||
set -l darwin_version (uname -r | string split .)
|
||||
# macOS 15 is Darwin 19, this is an issue at least up to 10.15.3.
|
||||
# If this is fixed in later versions uncomment the second check.
|
||||
if test "$darwin_version[1]" = 19 # -a "$darwin_version[2]" -le 3
|
||||
# macOS 15 is Darwin 19, this is an issue up to and including 10.15.3.
|
||||
if test "$darwin_version[1]" = 19 -a "$darwin_version[2]" -le 3
|
||||
function __fish_describe_command
|
||||
end
|
||||
# (remember: exit when `source`ing only exits the file, not the shell)
|
||||
|
|
Loading…
Reference in New Issue
Block a user