diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:52:28 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:52:28 +0000 |
commit | 8e21fb0a3e5830d05d12d8cdc07902eda4ec5932 (patch) | |
tree | b32bf59df84417b079a00f54efb885d2438edda5 /Completion | |
parent | 84d41177d703e418eba21fe622e48a5e85c834c3 (diff) | |
download | zsh-8e21fb0a3e5830d05d12d8cdc07902eda4ec5932.tar.gz zsh-8e21fb0a3e5830d05d12d8cdc07902eda4ec5932.tar.xz zsh-8e21fb0a3e5830d05d12d8cdc07902eda4ec5932.zip |
moved to Completion/Unix/Command/_gs
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/User/_gs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Completion/User/_gs b/Completion/User/_gs deleted file mode 100644 index 8ecd99570..000000000 --- a/Completion/User/_gs +++ /dev/null @@ -1,19 +0,0 @@ -#compdef gs ghostscript - -if compset -N --; then - if [[ CURRENT -eq 1 ]]; then - _ps - else - _message 'userdict ARGUMENTS' - return 1 - fi -else - _x_options \ - -q \ - '-g-:device size (<width>x<height>):' \ - '-r-:resolution (<val> or <x>x<y>):' \ - '-I:search paths:_dir_list' \ - \*-{d,D}'-:def: _gs_name -d' \ - \*-{s,S}'-:def: _gs_name -s' \ - '*:PostScript file:_ps' -fi |