比较 Sublime Text 中两个文件的内容,并排查看

Comparing the contents of two files in Sublime Text, with a side by side view

我已经阅读 Comparing the contents of two files in Sublime Text 但答案(本机 “文件夹 > 差异文件” 功能,或使用 FileDiffs)显示了差异在 2 个文件之间,例如 diff 工具,我不想要:

 --- file1.py
 +++ file2.py
 @@ -1,21 +1,19 @@
 -import os
 +import os, sys
 import numpy as np
 -print('hello')
 +print('hello world')
 -import sys

相反,我想要像这样与 PSPad 原生差异工具进行并排比较:

如何在 Sublime Text(2 或 3)中实现两个打开文件之间的这种并排比较?

Sublime Text 是否可以原生使用?

是的,您可以在没有插件的情况下做到这一点。一、selectView → Layout → Columns: 2

让你的 window 看起来像这样

然后,将您想要的选项卡拖到另一个窗格

你应该一切就绪。

Windows 和 Linux 的安装:

  • CTRL+SHIFT+P
  • 类型Package Control: Install Package
  • ENTER
  • 类型Compare Side
  • Select 包名为 Compare Side-By-Side

如何使用?

  • Select 您要比较的一个标签
  • 在要比较的第二个选项卡上单击鼠标右键
  • Select Compare with active tab

看起来怎么样?