summaryrefslogtreecommitdiff
path: root/plugins/flutter/README.md
diff options
context:
space:
mode:
authorAndrei Lesnitsky <andrei.lesnitsky@gmail.com>2019-09-24 15:46:38 +0300
committerMarc Cornellà <marc.cornella@live.com>2019-09-24 14:46:38 +0200
commitf9e7c45a484723f693a77ab6128a1cc163f3704a (patch)
treeacebefece56ea798911131c364b8af264908c241 /plugins/flutter/README.md
parentbe9160ef90bd55bc4f19f94df548b728c64d87bf (diff)
downloadzsh-f9e7c45a484723f693a77ab6128a1cc163f3704a.tar.gz
zsh-f9e7c45a484723f693a77ab6128a1cc163f3704a.tar.bz2
zsh-f9e7c45a484723f693a77ab6128a1cc163f3704a.zip
Add flutter plugin (#8150)
Diffstat (limited to 'plugins/flutter/README.md')
-rw-r--r--plugins/flutter/README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/flutter/README.md b/plugins/flutter/README.md
new file mode 100644
index 000000000..be419144f
--- /dev/null
+++ b/plugins/flutter/README.md
@@ -0,0 +1,21 @@
+## Flutter plugin
+
+The Flutter plugin provides completion and useful aliases
+
+To use it, add flutter to the plugins array of your zshrc file:
+
+```
+plugins=(... flutter)
+```
+
+## Aliases
+
+| Alias | Command | Description |
+| :--------- | :--------------------- | :------------------------------------------------------------------------- |
+| `fl` | `flutter` | Shorthand for flutter command |
+| `flr` | `flutter run` | Runs flutter app |
+| `fldoc` | `flutter doctor` | Runs flutter doctor |
+| `flb` | `flutter build` | Build flutter application |
+| `flattach` | `flutter attach` | Attaches flutter to a running flutter application with enabled observatory |
+| `flget` | `flutter packages get` | Installs dependencies |
+| `flc` | `flutter clean` | Cleans flutter porject |