https://github.com/enrico9034/zsh-watch-plugin
https://github.com/enrico9034/zsh-watch-plugin
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/enrico9034/zsh-watch-plugin
- Owner: enrico9034
- License: mit
- Created: 2020-10-05T13:00:27.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-03-19T16:54:28.000Z (about 2 years ago)
- Last Synced: 2024-04-16T16:21:55.494Z (about 2 years ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 16
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-zsh-plugins - watch - Easily prefix your current or previous commands with watch by pressing `CTRL + W`. (Plugins / ZSH on Windows)
- fucking-awesome-zsh-plugins - watch - Easily prefix your current or previous commands with watch by pressing `CTRL + W`. (Plugins / ZSH on Windows)
README
# WATCH
Easily prefix your current or previous commands with `watch` by pressing Alt + w
1. Clone this repository into `$ZSH_CUSTOM/plugins` (by default `~/.oh-my-zsh/custom/plugins`)
```bash
git clone https://github.com/enrico9034/watch-plugin-zsh.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/watch
```
2. To use it, add `watch` to the plugins array in your zshrc file:
```zsh
plugins=(... watch)
```
3. Start a new terminal session.
## Usage
### Current typed commands
Say you have typed a long command and forgot to add `watch` in front:
```console
$ kubectl get pod -n namespace
```
By pressing the Alt + w key, you will have the same command with `watch` prefixed without typing:
```console
$ watch kubectl get pod -n namespace
```
### Previous executed commands
Say you want to delete a system file and denied:
```console
$ kubectl get pod -n namespace
$
```
By pressing the Alt + w key, you will have the same command with `watch` prefixed without typing:
```console
$ rm some-system-file.txt
$
$ kubectl get pod -n namespace
$
```
### This plugin is based on official sudo plugin
sudo official plugin: https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/sudo