diff options
| author | Paul Buetow <paul@buetow.org> | 2026-05-25 09:29:36 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-05-25 09:29:36 +0300 |
| commit | 6fc6b680dfe9975e1483d687df2e6a7b5d0fe55f (patch) | |
| tree | 9fd7dd4b3b3fcb5fd9178d398ac7270f9f395ea7 | |
| parent | 9b54bde17133117669b748310cbbaf036c897904 (diff) | |
fix(completion): suppress fish file/path completions with -k flag
| -rw-r--r-- | completions/gt.fish | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/completions/gt.fish b/completions/gt.fish index c901488..5ecee57 100644 --- a/completions/gt.fish +++ b/completions/gt.fish @@ -26,6 +26,9 @@ end # ── Flags ──────────────────────────────────────────────────────────────────── +# Suppress fish's default file/path completions so only our custom tokens appear. +complete -c gt -k + complete -c gt -n "__fish_gt_needs_top_level" \ -l log -r -d "Session log file (REPL mode)" |
