且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在Sublime Text中更改选项卡名称?

更新时间:2023-01-05 09:46:25

在ST中在控制台中,输入 view.set_name(我的更改名称),用所需的名称替换字符串的内容。您也可以再次使用 view#set_name api方法来创建插件来执行此操作。

In the ST console, enter view.set_name("My changed name"), replacing the content of the string with the name you want. You can also create a plugin to do this, again using the view#set_name api method.