该语法是什么:$FilePath$ -t?
What is that syntax : $FilePath$ -t?
那个语法是什么以及如何在
中找到相应的值
$FilePath$ -t
这是在 PhpStorm IDE CSS comb 安装中作为参数添加的。
$FilePath$
是文件 Watcher/External 工具中的宏。当执行文件观察器时,它会解析为实际值。
您可以检查所有这些并通过单击输入字段旁边的 "Insert Macro..." 按钮插入新的(大多数显示当前 project/file 的预览值,不包括复杂的宏可以有额外的参数)。
https://www.jetbrains.com/help/phpstorm/2019.1/new-watcher-dialog.html
Arguments are usually specified using macros, for example, $FileName$ or $FileNameWithoutExtension$, that will be replaced with actual file names.
Type the macros manually or click Insert Macro and select the relevant pattern from the list in the Macros dialog that opens.
P.S。对于 File Watcher,如果将 "Show console" 设置为 "Always",您将能够看到执行的整个命令(执行时,而不是执行之前)。
那个语法是什么以及如何在
中找到相应的值$FilePath$ -t
这是在 PhpStorm IDE CSS comb 安装中作为参数添加的。
$FilePath$
是文件 Watcher/External 工具中的宏。当执行文件观察器时,它会解析为实际值。
您可以检查所有这些并通过单击输入字段旁边的 "Insert Macro..." 按钮插入新的(大多数显示当前 project/file 的预览值,不包括复杂的宏可以有额外的参数)。
https://www.jetbrains.com/help/phpstorm/2019.1/new-watcher-dialog.html
Arguments are usually specified using macros, for example, $FileName$ or $FileNameWithoutExtension$, that will be replaced with actual file names. Type the macros manually or click Insert Macro and select the relevant pattern from the list in the Macros dialog that opens.
P.S。对于 File Watcher,如果将 "Show console" 设置为 "Always",您将能够看到执行的整个命令(执行时,而不是执行之前)。