文件名称:org-mode-diff:用于 Emacs 组织模式的基于 Python 的差异工具
文件大小:11KB
文件格式:ZIP
更新时间:2024-07-29 19:37:31
Python
组织模式差异 此工具可用于查看组织模式文件中的差异。 它应用了一种针对组织模式文档进行调整的对齐算法。 它的输出根本不是严格意义上的差异(如果你想得到它,你应该只使用diff !)它在 emacs 的diff-mode看起来没问题。 这就是我如何使用它! 我将我的 .org 文件保存在本地 git 存储库中。 在开始一天的工作之前,我会做这样的事情来产生差异。 for file in `git diff --name-only *.org`; do git show master:$file > /tmp/old-$file; org-mode-diff --old /tmp/old-$file --new $file > /tmp/$file.diff; echo "/tmp/$file.diff"; done
【文件预览】:
org-mode-diff-master
----scripts()
--------org-mode-diff(1KB)
----org_mode_diff()
--------config.py(268B)
--------helpers.py(2KB)
--------printer.py(1010B)
--------parser.py(7KB)
--------models.py(829B)
--------diff.py(5KB)
----setup.py(356B)
----README.md(648B)
----tests()
--------test_parser.py(11KB)
--------test_diff.py(10KB)
--------__init__.py(0B)
----.gitignore(675B)