From a62114c91f2070c8c8453d117f3d81dc113e41ff Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Mon, 25 Mar 2024 16:43:09 +0530 Subject: dotfile update --- zsh/oh-my-zsh/plugins/1password/_opswd | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 zsh/oh-my-zsh/plugins/1password/_opswd (limited to 'zsh/oh-my-zsh/plugins/1password/_opswd') diff --git a/zsh/oh-my-zsh/plugins/1password/_opswd b/zsh/oh-my-zsh/plugins/1password/_opswd deleted file mode 100644 index dbc094f..0000000 --- a/zsh/oh-my-zsh/plugins/1password/_opswd +++ /dev/null @@ -1,19 +0,0 @@ -#compdef opswd - -function _opswd() { - local -a services - services=("${(@f)$(op item list --categories Login --cache 2>/dev/null | awk 'NR != 1 { print $2 }')}") - [[ -z "$services" ]] || compadd -a -- services -} - -# TODO: 2022-03-26: Remove support for op CLI 1 -autoload -Uz is-at-least -is-at-least 2.0.0 $(op --version) || { - function _opswd() { - local -a services - services=("${(@f)$(op list items --categories Login 2>/dev/null | op get item - --fields title 2>/dev/null)}") - [[ -z "$services" ]] || compadd -a -- services - } -} - -_opswd "$@" -- cgit v1.2.3-59-g8ed1b