用记事本执行命令++
如何使用 Notepad++ 中的运行命令指定要处理的实际文件。 例如,我想使用实际文件作为输入或 cs 编译器等运行 pdflatex。 使用整个路径是不切实际的,它必须适用于任何实际文件。
How can I specify the actual file to process using the Run command in Notepad++.
I want for example run pdflatex using the actualfile as input, or the cs compiler, etc.
Using the entire path isn't practical, it must works with any actual file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用执行字符串中的变量自动添加当前文件:
可用变量的列表记录在此处。示例:
E:\My Web\main\welcome.html
E:\My Web\main
welcome.html
欢迎
.html
例如:SYS.PATH =
%PATH%
<光标下的选择内容或单词>
<光标下的行行文本>
<行号>
<列号>
c:\Program Files\notepad++
c:\Program Files\notepad++\notepad++.exe
您还可以在 RunDlg.cpp 第 77 行 和 第 26 行
You can automatically add the current file using a variable in the execution string:
The list of available variables is documented here. Examples:
E:\My Web\main\welcome.html
E:\My Web\main
welcome.html
welcome
.html
<var>
e.g.: SYS.PATH =%PATH%
<selection or word under cursor>
<text of the line line under cursor>
<line number>
<column number>
c:\Program Files\notepad++
c:\Program Files\notepad++\notepad++.exe
You can also see the source code at RunDlg.cpp line 77 and line 26