查看源代码 mix help (Mix v1.16.2)

列出所有任务和别名,或打印给定任务或别名的文档。

参数

$ mix help                  - prints all aliases, tasks and their short descriptions
$ mix help ALIAS            - prints the definition for the given alias
$ mix help TASK             - prints full docs for the given task
$ mix help --search PATTERN - prints all tasks and aliases that contain PATTERN in the name
$ mix help --names          - prints all task names and aliases
                            (useful for autocompleting)

颜色

如果可能,mix help 将使用颜色来格式化帮助信息。格式可以通过在您的项目中(在 config/config.exs 中)或使用本地配置(在 ~/.mix/config.exs 中)配置 Mix 应用程序来定制。

例如,要禁用颜色,可以使用以下配置

[mix: [colors: [enabled: false]]]

可用的颜色选项有

  • :enabled - 显示 ANSI 格式(默认为 IO.ANSI.enabled?/0
  • :doc_code - 代码块的属性(青色,亮色)
  • :doc_inline_code - 行内代码(青色)
  • :doc_headings - h1 和 h2(黄色,亮色)
  • :doc_title - 输出的整体标题(反转,黄色,亮色)
  • :doc_bold - (亮色)
  • :doc_underline - (下划线)