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/multipass/README.md | 22 ------- zsh/oh-my-zsh/plugins/multipass/_multipass | 73 ---------------------- .../plugins/multipass/multipass.plugin.zsh | 7 --- 3 files changed, 102 deletions(-) delete mode 100644 zsh/oh-my-zsh/plugins/multipass/README.md delete mode 100644 zsh/oh-my-zsh/plugins/multipass/_multipass delete mode 100644 zsh/oh-my-zsh/plugins/multipass/multipass.plugin.zsh (limited to 'zsh/oh-my-zsh/plugins/multipass') diff --git a/zsh/oh-my-zsh/plugins/multipass/README.md b/zsh/oh-my-zsh/plugins/multipass/README.md deleted file mode 100644 index f6b2d76..0000000 --- a/zsh/oh-my-zsh/plugins/multipass/README.md +++ /dev/null @@ -1,22 +0,0 @@ -# multipass - -This plugin provides completion for [multipass](https://multipass.run), as well as aliases -for multipass commands. - -To use it, add `multipass` to the plugins array in your zshrc file: - -```zsh -plugins=(... multipass) -``` - -## Aliases - -| Alias | Command | -| ------ | ------------------------------------------------------------------- | -| `mp` | `multipass` | -| `mpl` | `multipass list` | -| `mpla` | `multipass launch` | -| `mpln` | `multipass launch --network en0 --network name=bridge0,mode=manual` | -| `mps` | `multipass shell` | -| `mpsp` | `multipass stop` | -| `mpst` | `multipass start` | diff --git a/zsh/oh-my-zsh/plugins/multipass/_multipass b/zsh/oh-my-zsh/plugins/multipass/_multipass deleted file mode 100644 index c742df6..0000000 --- a/zsh/oh-my-zsh/plugins/multipass/_multipass +++ /dev/null @@ -1,73 +0,0 @@ -#compdef multipass - -_multipass_get_command_list () { - # Sample output: - # $ multipass --help - # ... - # Options: - # -h, --help Display this help - # -v, --verbose Increase logging verbosity. Repeat the 'v' in the short option - # for more detail. Maximum verbosity is obtained with 4 (or more) - # v's, i.e. -vvvv. - # ... - # Available commands: - # alias Create an alias - # aliases List available aliases - # ... - # - $_comp_command1 --help | sed '1,/Available commands/d' | awk '/^[ \t]*[a-z]+/ { print $1 }' -} - -_multipass_get_args_list () { - # Sample output: - # $ multpass help stop - # ... - # Options: - # -h, --help Display this help - # -v, --verbose Increase logging verbosity. Repeat the 'v' in the short - # option for more detail. Maximum verbosity is obtained with - # 4 (or more) v's, i.e. -vvvv. - # --all Stop all instances - # -t, --time