linux - 差异感知编辑器,可以处理补丁 block 编辑(包括删除行)?

标签 linux user-interface editor diff patch

我的问题类似于Interactive program to selectively exclude parts of a diff file - 但有些不同...

假设我有以下“原始”文件:

$ cat test-orig.h 
int varA;
int varB;
int varC;
int varD;
int varE;

...并说我已将这些更改放入"new"文件中:

$ cat test-newmodified.h 
int varA;
int varB;
int varC;
// a couple of lines
// of useless comments
int var_extra1;
int var_extra2;
int varD;
int varE;

然后两者之间的差异将是:

$ diff -Naur test-orig.h test-newmodified.h | tee test.patch
--- test-orig.h 2013-07-18 19:21:25.741027138 +0200
+++ test-newmodified.h  2013-07-18 19:21:19.916998200 +0200
@@ -1,5 +1,9 @@
 int varA;
 int varB;
 int varC;
+// a couple of lines
+// of useless comments
+int var_extra1;
+int var_extra2;
 int varD;
 int varE;

比方说,我有一个这样获得的补丁文件,(有很多帅哥),我想删除“无用的注释行”。从 diff 生成的补丁文件中删除整个大块通常很容易 - 但如果我只想删除一些行,那么 diff 计数器(上面的 @@ -1,5 +1 ,9 @@) 也必须修改。比如说,如果文件中的注释行被删除,则差异将是:

$ diff -Naur test-orig.h test-newmodified-nc.h
--- test-orig.h 2013-07-18 19:21:25.741027138 +0200
+++ test-newmodified-nc.h   2013-07-18 19:26:30.898540270 +0200
@@ -1,5 +1,7 @@
 int varA;
 int varB;
 int varC;
+int var_extra1;
+int var_extra2;
 int varD;
 int varE;

...也就是说,带有注释的计数器 @@ -1,5 +1,9 @@ - 现在变成了没有注释的 @@ -1,5 + 1,7 @@

如果我只是从补丁 test.patch 中删除注释行(并将该编辑保存为 test-edit.patch),并且不更新计数器,然后我得到:

$ patch -p0 <test-edit.patch
patching file test-orig.h
patch: **** malformed patch at line 10:  

... 这样的补丁没有应用。那么,如果我只是将 test-edit.patch 中的 +1,9 更改为 +1.7,那么它就会干净地应用:

$ patch -p0 <test-edit.patch
patching file test-orig.h

... 和 test-orig.h 按预期更改(没有注释行)。

因此,给定一个补丁文件,其中包含与文件相关的所有 block - 是否有一个(GUI)(文本)编辑器可以识别diff(至少,统一差异),例如那:当一个大块(或整个大块)中的行被删除时,它会自动更新差异计数器 - 这样编辑的补丁文件仍然会干净地应用到原始文件?

最佳答案

好吧,我现在知道我至少可以为此使用 emacs,感谢这个答案:#9740489 How to edit a diff/patch file cleanly ? Are there any patch file editors? :

If you open a diff file in emacs and put the editor in "diff" mode you can actually edit patches and it will update the hunk markers in a smart way

请注意,在我的系统 (Ubuntu Lucid) 上,sudo apt-get install emacs 将在安装后使 emacs 命令最终符号链接(symbolic link)到 emacs23- x,它在自己的窗口中运行(而不是在终端中)。所以我可以打电话:

$ emacs test.patch

... 并且 emacs 将自动以“diff”模式启动:

emacs-diff

然后您可以使用鼠标选择行,但不能使用 Del/Backspace 删除它们 - 您必须使用 Ctrl-W 剪切选择(参见 In Emacs, how do I cut, paste, and copy a block of text? - Knowledge Base )。从截图中可以看出,标记是自动更新的。另外,不要使用 M-x diff 进入“diff”模式(参见 Comparing Files - GNU Emacs Manual ;在我的机器上,M-x 是 Alt-X)——然后它会开始询问“原始”和"new" "输入文件路径以对它们执行 diff,这不是我们想要的(假设补丁文件已经加载)。最后,GUI 菜单有文件/另存为(和 C-x C-w 快捷方式)——点击 GUI 菜单会弹出通常的文件对话框,编辑的文件可以在保存时重命名。

不过,还是想知道是否有其他选择......

关于linux - 差异感知编辑器,可以处理补丁 block 编辑(包括删除行)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17730468/

相关文章:

java - JRuby GUI 窗口

java - 更改交通灯java切换按钮的状态

具有文本格式化和上下文感知功能的 C 编辑器

javascript - 使用jquery实现数据网格

vim - 在 Vim 中,ctrl+w ctrl+w 的反义词是什么?

python-3.x - Python 无法访问我的 USB 设备 - 权限不足

linux - 撤消 Lubuntu 安装?

python tkinter 通过单击按钮打开新窗口并关闭第一个窗口

linux - 使用 yocto 添加第三方 linux 内核模块

linux - 在 shell 脚本中转义 jq 表达式中的符号