我有 Notepad++ 5.4.3 并且安装了 Google Chrome。
在 Notepad++ 中,我知道我可以单击“运行”菜单;然后浏览 .exe。但不幸的是,我能找到的唯一 chrome.exe 文件似乎是 Internet Explorer 的 chromeframe。
另外,我该如何删除添加到运行菜单中的“Chrome”快捷方式(不起作用)?
答案1
如果你下载最新版本(5.7?),运行菜单有四种不同的“启动浏览器“菜单项(IE、Firefox、Chrome 和 Safari)
答案2
您可以通过转到 %AppData%\Notepad++ 目录并编辑 Shortcuts.xml 文件来引用 Chrome 的正确位置,从而编辑运行菜单中的链接。
<Command name="Launch in Chrome" Ctrl="yes" Alt="yes" Shift="yes" Key="82">chrome "$(FULL_CURRENT_PATH)"</Command>
这就是默认读取的内容
<Command name="Launch in Chrome" Ctrl="yes" Alt="yes" Shift="yes" Key="82">%LocalAppData%\Google\Chrome\Application\Chrome.exe "$(FULL_CURRENT_PATH)"</Command>
这就是它可以读的内容
在运行命令框中输入:
%LocalAppData%\Google\Chrome\Application\Chrome.exe "$(FULL_CURRENT_PATH)"
答案3
答案4
我将快捷方式设为Alt+ Shift+R并且一切运行正常。
其他浏览器快捷方式也一样。