From 2f2ea729a7ffa04d8aa13f158d81c44fa30f380a Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Mon, 27 Jan 2025 17:51:35 +0100 Subject: [PATCH] completions/csvlens: Fix missing option (cherry picked from commit bba15c6d14583778e458bfc96364ffc2f3057eb0) --- share/completions/csvlens.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/completions/csvlens.fish b/share/completions/csvlens.fish index 10873fd08..f6431ef21 100644 --- a/share/completions/csvlens.fish +++ b/share/completions/csvlens.fish @@ -6,6 +6,6 @@ complete -c csvlens -l filter -r -d "Use this regex to filter rows to display by complete -c csvlens -l find -r -d "Use this regex to find and highlight matches by default" complete -c csvlens -s i -l ignore-case -d "Searches ignore case. Ignored if any uppercase letters are present in the search string" complete -c csvlens -l echo-column -r -d "Print the value of this column to stdout for the selected row" -complete -c csvlens -l debug "Show stats for debugging" +complete -c csvlens -l debug -d "Show stats for debugging" complete -c csvlens -s h -l help -f -d "Print help" complete -c csvlens -s V -l version -f -d "Print version"