From 345fda484339a75e85cb6732441e4d5311b68bf4 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 25 May 2026 09:13:24 +0300 Subject: fix(completion): use __fish_use_subcommand instead of non-standard __fish_seen_command_argument --- completions/gt.fish | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/completions/gt.fish b/completions/gt.fish index d82e1bb..2c3b911 100644 --- a/completions/gt.fish +++ b/completions/gt.fish @@ -13,8 +13,7 @@ # Return true when we are at the top-level (first argument after 'gt'). function __fish_gt_needs_top_level - # Only match if we haven't seen any subcommand or flag yet - not __fish_seen_command_argument --exclusive + __fish_use_subcommand end # Return true when the current token is part of an RPN expression (i.e. we are -- cgit v1.2.3