How can I change tab name in Sublime Text?

前端 未结 1 905
轻奢々
轻奢々 2021-01-02 07:34

Is it possible to change tab names for files with strange names? They can not be renamed on disk but it is difficult to keep up with mad file names in Sublime :D

相关标签:
1条回答
  • 2021-01-02 07:46

    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.

    0 讨论(0)
提交回复
热议问题