在资源管理器中显示的快捷方式 texstudio

在资源管理器中显示的快捷方式 texstudio

当我在 texstudio 的结构部分中右键单击文件时,其中一个选项是“在资源管理器中显示”。有没有办法为此选项定义快捷方式。

答案1

键盘快捷键只能分配给菜单项和一些基本的编辑功能,例如手册中显示

您可以在个人宏并为其分配键盘快捷键。

该脚本将在编辑器中当前文件的文件夹中打开文件资源管理器(取消注释适合您的操作系统的相应行):

%SCRIPT
// needs TeXstudio v2.11.0 or newer
filename = app.getCurrentFileName()
workingDirectory = filename.substring(0, filename.lastIndexOf("/"))
//system("explorer .", workingDirectory) //for windows - tested
//system("xdg-open .", workingDirectory) //for linux - tested
//system("open .", workingDirectory) //for mac - untested

相关内容