From 3875542394c219d2e747988db269fc2bbeec256c Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 6 Jan 2009 13:41:42 +0100 Subject: Removed sort completion, a better one is now available with zsh --- etc/completions/_sort | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 etc/completions/_sort (limited to 'etc/completions') diff --git a/etc/completions/_sort b/etc/completions/_sort deleted file mode 100644 index 6d6bc55..0000000 --- a/etc/completions/_sort +++ /dev/null @@ -1,32 +0,0 @@ -#compdef sort -## Quick, dirty and probably incomplete sort completion -## Copyright (C) 2008 by Daniel Friesel -## License: WTFPL - -typeset -a arguments - -arguments=( - '-b[ignore leading blanks]' - '-d[dictionary/alphabetical sort]' - '-f[ignore case]' - '-g[general numeric sort]' - '-i[ignore non-printable characters]' - '-M[sort by month]' - '-n[string numeric sort]' - '-R[random sort]' - '--random-source=-[entropy source]:file:_files' - '-r[reverse sort]' - '-c[check if input is sorted]' - '-C[quietly check if input is sorted]' - '-k' - '-m[merge sorted files]' - '-o[output file]:output file:_files' - '-s[stabilize sort]' - '-S[set buffer size]:buffer size' - '-t[set field separator]:field seprarator' - '-T[set temporary directory]:tmpdir:_path_files -/' - '-u[unique output]' - '-z[end lines with 0 byte]' -) - -_arguments -s $arguments -- cgit v1.2.3