1

在 Textmate 1 中,我习惯于在项目抽屉中包含来自不同位置的文件夹。这在Textmate 2中仍然可能吗?

示例:我有以下(真实)文件结构:

/my_software
    /system_a
        /module_b
            /src_b (This is my actual project folder)
/other_software
    /system_y
        /module_z
            /src_z (I want to have this folder in my project file tree, for reference)

我希望我的 Textmate 2 项目文件浏览器看起来像这样,这在 Textmate 1 中很容易通过将现有文件夹添加到抽屉中:

/src_b
/src_z

这在Textmate 2中仍然可能吗?例如,通过在 .tm_properties 文件中添加外部文件夹?

4

1 回答 1

2

目前最好的方法是使用符号链接。考虑到上述目录结构,这是从命令行执行此操作的方法:

$ mkdir my_project
$ cd my_project
$ ln -s /my_software/system_a/module_b/src_b .
$ ln -s /other_software/system_y/module_z/src_z .
$ mate .

希望这可以帮助!

于 2013-11-19T21:20:45.253 回答