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.

42 lines
918 B

  1. .TH "NPM\-COMPLETION" "1" "August 2018" "" ""
  2. .SH "NAME"
  3. \fBnpm-completion\fR \- Tab Completion for npm
  4. .SH SYNOPSIS
  5. .P
  6. .RS 2
  7. .nf
  8. source <(npm completion)
  9. .fi
  10. .RE
  11. .SH DESCRIPTION
  12. .P
  13. Enables tab\-completion in all npm commands\.
  14. .P
  15. The synopsis above
  16. loads the completions into your current shell\. Adding it to
  17. your ~/\.bashrc or ~/\.zshrc will make the completions available
  18. everywhere:
  19. .P
  20. .RS 2
  21. .nf
  22. npm completion >> ~/\.bashrc
  23. npm completion >> ~/\.zshrc
  24. .fi
  25. .RE
  26. .P
  27. You may of course also pipe the output of npm completion to a file
  28. such as \fB/usr/local/etc/bash_completion\.d/npm\fP if you have a system
  29. that will read that file for you\.
  30. .P
  31. When \fBCOMP_CWORD\fP, \fBCOMP_LINE\fP, and \fBCOMP_POINT\fP are defined in the
  32. environment, \fBnpm completion\fP acts in "plumbing mode", and outputs
  33. completions based on the arguments\.
  34. .SH SEE ALSO
  35. .RS 0
  36. .IP \(bu 2
  37. npm help 7 developers
  38. .IP \(bu 2
  39. npm help npm
  40. .RE