my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
2.0 KiB

3 years ago
  1. ## Flutter plugin
  2. The Flutter plugin provides completion and useful aliases
  3. To use it, add `flutter` to the plugins array of your zshrc file:
  4. ```zsh
  5. plugins=(... flutter)
  6. ```
  7. ## Aliases
  8. | Alias | Command | Description |
  9. | :--------- | :---------------------- | :------------------------------------------------------------------------- |
  10. | `fl` | `flutter` | Shorthand for flutter command |
  11. | `flattach` | `flutter attach` | Attaches flutter to a running flutter application with enabled observatory |
  12. | `flb` | `flutter build` | Build flutter application |
  13. | `flchnl` | `flutter channel` | Switches flutter channel (requires input of desired channel) |
  14. | `flc` | `flutter clean` | Cleans flutter project |
  15. | `fldvcs` | `flutter devices` | List connected devices (if any) |
  16. | `fldoc` | `flutter doctor` | Runs flutter doctor |
  17. | `flpub` | `flutter pub` | Shorthand for flutter pub command |
  18. | `flget` | `flutter pub get` | Installs dependencies |
  19. | `flr` | `flutter run` | Runs flutter app |
  20. | `flrd` | `flutter run --debug` | Runs flutter app in debug mode (default mode) |
  21. | `flrp` | `flutter run --profile` | Runs flutter app in profile mode |
  22. | `flrr` | `flutter run --release` | Runs flutter app in release mode |
  23. | `flupgrd` | `flutter upgrade` | Upgrades flutter version depending on the current channel |