Files
fish-shell/share/functions/__fish_seen_subcommand_from.fish
Johannes Altmanninger a53db72564 Mark private functions that don't need localization
See the next commit.

Part of #11833
2025-09-30 11:47:26 +02:00

13 lines
363 B
Fish

# localization: skip(private)
#
# Test to see if we've seen a subcommand from a list.
# This logic may seem backwards, but the commandline will often be much shorter
# than the list
#
function __fish_seen_subcommand_from
set -l regex (string escape --style=regex -- (commandline -pxc)[2..] | string join '|')
string match -rq -- "^($regex)\$" $argv
end