diff options
author | Frank Terbeck <ft@bewatermyfriend.org> | 2011-06-02 10:50:35 +0200 |
---|---|---|
committer | Frank Terbeck <ft@bewatermyfriend.org> | 2011-06-02 10:50:35 +0200 |
commit | 2438a0e95aa448f0aeda468752444306b44fe7d0 (patch) | |
tree | 8477e9c6af360f6a89af13e8cb5f2a4f9c1cff2c /Completion/X/Command/_matlab | |
parent | b495ba1e5a3ab1396844490ad8cad17dec23d6c1 (diff) | |
parent | 21266db1d9ae433bf1dcb196a4e258c00541b599 (diff) | |
download | zsh-2438a0e95aa448f0aeda468752444306b44fe7d0.tar.gz zsh-2438a0e95aa448f0aeda468752444306b44fe7d0.zip |
Merge commit 'zsh-4.3.12' into debian
Diffstat (limited to 'Completion/X/Command/_matlab')
-rw-r--r-- | Completion/X/Command/_matlab | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Completion/X/Command/_matlab b/Completion/X/Command/_matlab new file mode 100644 index 000000000..64d076f43 --- /dev/null +++ b/Completion/X/Command/_matlab @@ -0,0 +1,19 @@ +#compdef matlab + +_arguments : \ + {-h,-help}'[Display arguments.]' \ + '(-e)-n[Display final environment variables, and exit]' \ + '(-n)-e[Display ALL the environment variables and values, and exit]' \ + '-arch[Start MATLAB assuming architecture arch]:architecture:' \ + '-c[Set location of the license file]:licensefile:_files' \ + '(-nodisplay)-display:display:_x_display' \ + '(-display)-nodisplay[Do not display any X commands.]' \ + '-nosplash[Do not display the splash screen during startup.]' \ + '-mwvisual[The default X visual to use for figure windows.]:visualid:' \ + '-debug[Provide debugging information especially for X based problems.]' \ + '(-nodesktop -nojvm)-desktop[Allow the MATLAB desktop to be started by a process without a controlling terminal.]' \ + '(-desktop -nojvm)-nodesktop[Do not start the MATLAB desktop.]' \ + '(-nodesktop -desktop)-nojvm[Shut off all Java support by not starting the Java virtual machine.]' \ + '-r[Start MATLAB and execute the MATLAB_command.]:MATLAB_command:' \ + '-logfile[Make a copy of any output to the command window in file log.]:log file:' \ + '-D-:debugger:_path_commands' |