diff options
author | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2018-08-30 00:53:10 +0900 |
---|---|---|
committer | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2018-08-30 00:53:10 +0900 |
commit | 5ff259d41336f592f9e0c7d31dd0603dad449343 (patch) | |
tree | 3068c8d3de1e136c1ec2a95f934613373f76dbab /Completion | |
parent | b8df07ad0615ad593da45973f80afafd018e710f (diff) | |
download | zsh-5ff259d41336f592f9e0c7d31dd0603dad449343.tar.gz zsh-5ff259d41336f592f9e0c7d31dd0603dad449343.tar.xz zsh-5ff259d41336f592f9e0c7d31dd0603dad449343.zip |
43349: new completion for eog
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/X/Command/_eog | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Completion/X/Command/_eog b/Completion/X/Command/_eog new file mode 100644 index 000000000..6a737a79d --- /dev/null +++ b/Completion/X/Command/_eog @@ -0,0 +1,24 @@ +#compdef eog + +_arguments -s -S \ + - '(help)' \ + '--version[display version information]' \ + {-h,--help}'[display help information]' \ + '--help-all[display help on all options]' \ + '--help-gtk[display help on GTK+ options]' \ + - normal \ + '--class=[specify program class as used by the window manager]:class' \ + '--name=[program name as used by the window manager]:name:_x_name' \ + '--gdk-debug=[specify GDK debugging flags to set]:flag' \ + '--gdk-no-debug=[specify GDK debugging flags to unset]:flag' \ + '--gtk-module=[load additional GTK+ modules]:module' \ + '--g-fatal-warnings[make all warnings fatal]' \ + '--gtk-debug=[specify GTK+ debugging flags to set]:flag' \ + '--gtk-no-debug=[specify GTK+ debugging flags to unset]:flag' \ + '(-f --fullscreen)'{-f,--fullscreen}'[open in fullscreen mode]' \ + '(-s --slide-show -f --fullscreen)'{-s,--slide-show}'[open in slideshow mode]' \ + '(-g --disable-gallery)'{-g,--disable-gallery}'[disable image gallery]' \ + '(-n --new-instance)'{-n,--new-instance}'[start a new instance]' \ + '(-w --single-window)'{-w,--single-window}'[open in single window]' \ + '--display=[specify X display]:display:_x_display' \ + '*:image file:_files -g "*.(#i)(ani|bmp|gif|ico|jpeg|jpg|pcx|png|pnm|ras|svg|tga|tiff||tif|wbmp|wbm|xbm|xpm)(-.)"' |