https://github.com/dizzpy/flutter-zsh-shortcuts
A Zsh plugin that adds convenient aliases for common Flutter commands.
https://github.com/dizzpy/flutter-zsh-shortcuts
aliases flutter flutter-zsh-shortcuts zsh
Last synced: about 1 month ago
JSON representation
A Zsh plugin that adds convenient aliases for common Flutter commands.
- Host: GitHub
- URL: https://github.com/dizzpy/flutter-zsh-shortcuts
- Owner: dizzpy
- License: other
- Created: 2025-06-17T21:04:03.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-17T21:22:02.000Z (about 1 year ago)
- Last Synced: 2026-05-08T00:41:45.739Z (about 1 month ago)
- Topics: aliases, flutter, flutter-zsh-shortcuts, zsh
- Language: Shell
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-zsh-plugins - flutter-zsh-shortcuts - Adds clean aliases for flutter commands. (Plugins / ZSH on Windows)
- fucking-awesome-zsh-plugins - flutter-zsh-shortcuts - Adds clean aliases for flutter commands. (Plugins / ZSH on Windows)
README
# flutter-zsh-shortcuts 🐦⚡
A blazing-fast ⚡️ Zsh plugin with clean aliases for common Flutter commands. Make your CLI workflow smoother than a hot reload.
---
## ⚙️ Installation
### Manual (Oh My Zsh)
Clone the plugin into your custom plugin folder:
```bash
git clone https://github.com/dizzpy/flutter-zsh-shortcuts ~/.oh-my-zsh/custom/plugins/flutter-zsh-shortcuts
```
Edit your `~/.zshrc` and add `flutter-zsh-shortcuts` to the `plugins` array:
```zsh
plugins=(git flutter-zsh-shortcuts)
```
Then apply the changes:
```bash
source ~/.zshrc
```
---
## 🔤 Available Shortcuts
| Alias | Full Command |
|--------:|-------------------------------|
| `f` | `flutter` |
| `fc` | `flutter clean` |
| `fpg` | `flutter pub get` |
| `fpu` | `flutter pub upgrade` |
| `fr` | `flutter run` |
| `fbapk` | `flutter build apk` |
| `fbab` | `flutter build appbundle` |
| `fd` | `flutter doctor` |
| `ft` | `flutter test` |
| `fan` | `flutter analyze` |
| `fdv` | `flutter devices` |
| `fem` | `flutter emulators` |
| `fio` | `open ios/Runner.xcworkspace` |
| `fup` | `flutter upgrade` |
| `fpl` | `flutter pub outdated` |
---
## 📄 License
MIT © [Dizzpy](https://github.com/dizzpy)
---
> ⭐ Star this repo if it saved your keystrokes 💻
> 👉 [github.com/dizzpy/flutter-zsh-shortcuts](https://github.com/dizzpy/flutter-zsh-shortcuts)