Intellij命令行工具架构文档

时间:2018-12-11 03:09:58

标签: intellij-idea command-line-tool

我正在尝试为我们的内部命令行工具设置自动完成功能,但是我一直在努力寻找有关我拥有的选项的信息。

<framework xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="schemas/frameworkDescriptionVersion1.1.4.xsd" name="Custom_tool" invoke="tool" alias="tool" enabled="true" version="2">
  <help><![CDATA[Our tools]]></help>
  <command>
    <name>ember-deploy-staging</name>
    <params>Command[what can i do here]</params>
  </command>
  <command>
    <name>help</name>
    <params>Command[=null]</params>
  </command>
</framework>

上面的示例显示了具有2个命令的模式。

我想实现以下目标:

tool ember-deploy-staging --container something

当我在something中键入时--container是自动完成的

我不确定这是否可行,但也许有人知道。

0 个答案:

没有答案