diff options
author | 2024-03-25 16:43:09 +0530 | |
---|---|---|
committer | 2024-03-25 16:43:09 +0530 | |
commit | a62114c91f2070c8c8453d117f3d81dc113e41ff (patch) | |
tree | f266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/tmux-cssh/_tmux-cssh | |
parent | af120ab348f2e1a5a39dec035ed9dcf84189a64e (diff) | |
download | dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2 dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip |
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/tmux-cssh/_tmux-cssh')
-rw-r--r-- | zsh/oh-my-zsh/plugins/tmux-cssh/_tmux-cssh | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/zsh/oh-my-zsh/plugins/tmux-cssh/_tmux-cssh b/zsh/oh-my-zsh/plugins/tmux-cssh/_tmux-cssh deleted file mode 100644 index 3e81b82..0000000 --- a/zsh/oh-my-zsh/plugins/tmux-cssh/_tmux-cssh +++ /dev/null @@ -1,25 +0,0 @@ -#compdef tmux-cssh - -# tmux-cssh autocompletion for oh-my-zsh -# Requires: tmux-cssh installed -# Author: Manfred Touron (@moul) - -_arguments \ - '(-h --help)'{-h,--help}'[This help.]' \ - '(-u --user)'{-u,--user}'[User to use.]' \ - '(-c --certificate)'{-c,--certificate}'[Path to ssh-certificate to use.]' \ - '(-sc --ssh)'{-sc,--ssh}'[SSH-connection-string, multiple.]' \ - '(-sa --ssh)'{-sa,--ssh}'[SSH connection arguments, used on every session.]' \ - '(-ts --tmux)'{-ts,--tmux}'[Alternative tmux-session-name, default: tmux-cssh]' \ - '(-ns --new)'{-ns,--new}'[Initializes a new session, like -ts \[name\].]' \ - '(-q --quiet)'{-q,--quiet}'[Quiet-mode.]' \ - '(-f --filename)'{-f,--filename}'[Filename of textfile to get -sc connection-strings from, line separated.]' \ - '(-cs --config)'{-cs,--config}'[Name of config-settings which should be get from config-file "$HOME/.tmux-cssh". Which can be a grep-regular expression to find the name(s).]' \ - ':hosts:_hosts' \ - '*:: :->subcmds' \ - && return 0 - -if (( CURRENT == 1 )); then - _describe -t commands "tmux-cssh command" - return -fi |