Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Notepad++ 和 NppExec 插件作为 PHP 的轻量级 IDE。
我为 NppExec "%ABSFILE% on line %LINE%" 添加了一个控制台输出过滤器。当我遇到错误时,我可以双击它——但它只会导航到当前活动文件中的指定行。如果有错误的文件在不同的选项卡上,它不会切换选项卡,如果文件未打开,也不会打开文件。
双击时如何让 NppExec 打开检测到的 %ABSFILE%?
我正在使用 Notepad++ 5.9.8 和 NppExec 0.4.1。
我应该意识到的是 NppExec 控制台过滤器需要匹配整行。对于 php 解析错误,“%ABSFILE% on line %LINE%”是不够的,我需要“* in %ABSFILE% on line %LINE%”。
问题解决了。