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.

19 lines
427 B

3 years ago
  1. # pm2 plugin
  2. The plugin adds several aliases and completions for common [pm2](http://pm2.keymetrics.io/) commands.
  3. To use it, add `pm2` to the plugins array of your zshrc file:
  4. ```
  5. plugins=(... pm2)
  6. ```
  7. ## Aliases
  8. | Alias | Command |
  9. |--------|----------------------|
  10. | p2s | `pm2 start` |
  11. | p2o | `pm2 stop` |
  12. | p2d | `pm2 delete` |
  13. | p2r | `pm2 restart` |
  14. | p2i | `pm2 list` |
  15. | p2l | `pm2 logs` |