From c7dc2c5a586a8b34c9de17df117d077b1a52397b Mon Sep 17 00:00:00 2001 From: Marcel Hellwig Date: Tue, 24 Nov 2020 08:49:30 +0100 Subject: [PATCH] add completion for icdiff icdiff is a diff command that uses colors by default and is an advances version of the original diff command https://github.com/jeffkaufman/icdiff --- share/completions/icdiff.fish | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 share/completions/icdiff.fish diff --git a/share/completions/icdiff.fish b/share/completions/icdiff.fish new file mode 100644 index 000000000..00817a3bc --- /dev/null +++ b/share/completions/icdiff.fish @@ -0,0 +1,21 @@ +# Completions for icdiff +complete -c icdiff -l version -d "Display version and exit" +complete -c icdiff -s h -l help -d "Display help and exit" +complete -c icdiff -l cols -d "Specify the width of the screen" +complete -c icdiff -l encoding -d "Specify file encoding" +complete -c icdiff -s E -l exclude-lines -d "Ignore lines that match this regex" +complete -c icdiff -l head -d "Consider only the first N lines of each file" +complete -c icdiff -s H -l highlight -d "Use the background instead of foreground color for diff" +complete -c icdiff -s L -l label -d "Override file label. Use twice for both files" +complete -c icdiff -s N -l line-numbers -d "Show line numbers" +complete -c icdiff -l no-bold -d "Use non-bold colors" +complete -c icdiff -l no-headers -d "Don't show file labels" +complete -c icdiff -l output-encoding -d "Specify output encoding" +complete -c icdiff -s r -l recursive -d "Recursive search" +complete -c icdiff -s s -l report-identical-files -d "Report when two files are same" +complete -c icdiff -l show-all-spaces -d "Color non-matchining whitespace changes" +complete -c icdiff -l tabsize -d "Tab stop spacing" +complete -c icdiff -s U -l unified -l numlines -d "Print N lines of sourrounding context" +complete -c icdiff -s W -l whole-file -d "Show the whole file instead of just changings" +complete -c icdiff -l strip-trailing-cr -d "Strip trailing carriage return at the end of an input line" +complete -c icdiff -l color-map -d "Specify color map"