VSCode集成终端参数:当前文件名

时间:2018-10-21 01:38:59

标签: shell terminal visual-studio-code

在VSCode中,我想将当前文件名传递给集成终端 有一个设置:

"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",

如何添加当前文件名,例如,这很好:

"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe %CurrentFileName%",

谢谢。

1 个答案:

答案 0 :(得分:0)

shell argument将在terminal.integrated.shellArgs.powershell

尝试使用variables which should be substituted中的一个作为其实际值

"terminal.integrated.shellArgs.powershell": ["${file}"]