在Textmate中打开同一文件的几个窗口

时间:2010-09-06 12:31:16

标签: textmate

你知道Textmate中的一个如何为同一个文件打开几个窗口吗?

所以我可以同时查看并比较同一文件的不同部分。

由于

1 个答案:

答案 0 :(得分:1)

因此,一种方法是使用以下脚本滥用TextMate项目:

# we want to force TextMate to open up another window with the document
# if we leave out /dev/null here textmate will simply (re)activate the
# current document. So, while we get a project file with two items
# (the current document - which we wanted a new view of) and an
# empty file named "null", it's the easiest solution I know of
# WD-rpw 03-22-07

tof=` echo $TM_FILEPATH | sed 's/\.[^.]*$/*/' `
mate $tof /dev/null

将其保存在捆绑包中的新命令中,您应该准备好了。