diff options
author | Clint Adams <clint@users.sourceforge.net> | 2001-06-01 12:18:02 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2001-06-01 12:18:02 +0000 |
commit | 7ed58fa17d173a4206212ef41011ff3852c4e354 (patch) | |
tree | dee91cd4bfc4e26286eb51392e7d6f62b64970f6 /Completion/Unix/Command | |
parent | 0ce4b800a328467f2ef1d27f4a6b2f96b36a5baf (diff) | |
download | zsh-7ed58fa17d173a4206212ef41011ff3852c4e354.tar.gz zsh-7ed58fa17d173a4206212ef41011ff3852c4e354.tar.xz zsh-7ed58fa17d173a4206212ef41011ff3852c4e354.zip |
14635: presume '*core' glob for coredump files
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_gdb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_gdb b/Completion/Unix/Command/_gdb index f7dbb0a10..f13a897a3 100644 --- a/Completion/Unix/Command/_gdb +++ b/Completion/Unix/Command/_gdb @@ -47,7 +47,7 @@ else done if [[ $#w -gt 1 ]]; then - _alternative 'files:: _files' "processes:: _pids -m ${w[1]:t}" + _alternative "files:: _files -g '*core'" "processes:: _pids -m ${w[1]:t}" else _description files expl executable _files "$expl[@]" -g '*(-*)' |