Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

31 lines
797 B

  1. npm-completion(1) -- Tab Completion for npm
  2. ===========================================
  3. ## SYNOPSIS
  4. source <(npm completion)
  5. ## DESCRIPTION
  6. Enables tab-completion in all npm commands.
  7. The synopsis above
  8. loads the completions into your current shell. Adding it to
  9. your ~/.bashrc or ~/.zshrc will make the completions available
  10. everywhere:
  11. npm completion >> ~/.bashrc
  12. npm completion >> ~/.zshrc
  13. You may of course also pipe the output of npm completion to a file
  14. such as `/usr/local/etc/bash_completion.d/npm` if you have a system
  15. that will read that file for you.
  16. When `COMP_CWORD`, `COMP_LINE`, and `COMP_POINT` are defined in the
  17. environment, `npm completion` acts in "plumbing mode", and outputs
  18. completions based on the arguments.
  19. ## SEE ALSO
  20. * npm-developers(7)
  21. * npm(1)