diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-08-01 12:31:36 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-08-01 12:31:36 +0000 |
commit | 3bcf15bf23215f06a7c216548ce8d1c71fc704c7 (patch) | |
tree | fcb8c7e6e96377fa983ebbdbbb1dffcf07cf529c /Completion/User | |
parent | 81fc1bf26c99ca62532051559ea3f68141abc026 (diff) | |
download | zsh-3bcf15bf23215f06a7c216548ce8d1c71fc704c7.tar.gz zsh-3bcf15bf23215f06a7c216548ce8d1c71fc704c7.tar.xz zsh-3bcf15bf23215f06a7c216548ce8d1c71fc704c7.zip |
new completion function for slrn (12463)
Diffstat (limited to 'Completion/User')
-rwxr-xr-x | Completion/User/_slrn | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Completion/User/_slrn b/Completion/User/_slrn new file mode 100755 index 000000000..a063e227c --- /dev/null +++ b/Completion/User/_slrn @@ -0,0 +1,16 @@ +#compdef slrn + +_arguments \ + '-n[do not check for new groups]' \ + '-h[NNTP host]:NNTP host:_hosts' \ + '-p[NNTP port]:NNTP port:_ports' \ + '-f[name of the newsrc file to use]:the newsrc file to use:_files' \ + '-C[use colors]' \ + '-create[create a newsrc file by getting list of groups from server]' \ + '-d[get new text descriptions of each group from server]' \ + '-i[name of initialization file to use]:initialization file to use:_files' \ + '-D-[add predefined preprocessing token]' \ + '-k[do not process score file]' \ + '-k0[process score file but inhibit expensive scores]' \ + '-a[use active file for getting new news]' \ + '-m[force XTerm mouse reporting]' |