用记事本执行命令++

发布于 2024-10-10 11:42:07 字数 104 浏览 6 评论 0原文

如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半边脸i 2024-10-17 11:42:07

您可以使用执行字符串中的变量自动添加当前文件:

C:\temp\test.exe "$(FULL_CURRENT_PATH)" 

可用变量的列表记录在此处。示例:

  • FULL_CURRENT_PATH = E:\My Web\main\welcome.html
  • CURRENT_DIRECTORY = E:\My Web\main
  • FILE_NAME = welcome.html
  • NAME_PART = 欢迎
  • EXT_PART = .html
  • SYS. 例如:SYS.PATH = %PATH%
  • CURRENT_WORD = <光标下的选择内容或单词>
  • CURRENT_LINESTR = <光标下的行行文本>
  • CURRENT_LINE = <行号>
  • CURRENT_COLUMN = <列号>
  • NPP_DIRECTORY = c:\Program Files\notepad++
  • NPP_FULL_FILE_PATH = c:\Program Files\notepad++\notepad++.exe

您还可以在 RunDlg.cpp 第 77 行第 26 行

You can automatically add the current file using a variable in the execution string:

C:\temp\test.exe "$(FULL_CURRENT_PATH)" 

The list of available variables is documented here. Examples:

  • FULL_CURRENT_PATH = E:\My Web\main\welcome.html
  • CURRENT_DIRECTORY = E:\My Web\main
  • FILE_NAME = welcome.html
  • NAME_PART = welcome
  • EXT_PART = .html
  • SYS.<var> e.g.: SYS.PATH = %PATH%
  • CURRENT_WORD = <selection or word under cursor>
  • CURRENT_LINESTR = <text of the line line under cursor>
  • CURRENT_LINE = <line number>
  • CURRENT_COLUMN = <column number>
  • NPP_DIRECTORY = c:\Program Files\notepad++
  • NPP_FULL_FILE_PATH = c:\Program Files\notepad++\notepad++.exe

You can also see the source code at RunDlg.cpp line 77 and line 26

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文