lua-differ/README.md

68 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2017-10-26 02:18:01 -07:00
# LuaDiffer: A simple lua diff library
This is a simple lua module that performs a diff on two strings and returns a table of
2017-10-27 16:05:37 -07:00
string chunks, or a diff of two lists and returns a list of list subsets.
2017-10-26 02:18:01 -07:00
## Example
```lua
make_diff = require "diff"
2017-10-26 02:18:42 -07:00
s1 = [[hello
2017-10-26 02:23:41 -07:00
...
2017-10-26 02:18:01 -07:00
to the
world]]
2017-10-26 02:18:42 -07:00
s2 = [[hello
2017-10-26 02:23:41 -07:00
...
2017-10-26 02:25:05 -07:00
*at* the
2017-10-26 02:18:01 -07:00
world]]
diff = make_diff(s1, s2)
2017-10-26 02:23:41 -07:00
```
returns the table:
2017-10-26 02:25:44 -07:00
```lua
2017-10-26 02:23:41 -07:00
{
{old="hello\n...\n", old_first=1, old_last=2,
new="hello\n...\n", new_first=1, new_last=2},
{old="to the\n", old_first=3, old_last=3,
new="*at* the\n", new_first=3, new_last=3},
{old="world", old_first=4, old_last=4,
new="world", new_first=4, new_last=4},
2017-10-26 02:23:41 -07:00
}
```
and running:
```lua
2017-10-26 02:18:01 -07:00
diff:print{color=false}
```
2017-10-26 02:23:41 -07:00
produces the output:
2017-10-26 02:18:01 -07:00
```
hello
2017-10-26 02:23:41 -07:00
...
2017-10-26 02:18:01 -07:00
- to the
2017-10-26 02:25:05 -07:00
+ *at* the
2017-10-26 02:18:01 -07:00
world
```
You can also diff tables:
```lua
diff({1,2,3,4,5},{99,2,4,5,6})
```
returns:
```lua
{{old={1}, old_first=1, old_last=1, new={99}, new_first=1, new_last=1},
{old={2}, old_first=2, old_last=2, new={2}, new_first=2, new_last=2},
{old={3}, old_first=3, old_last=3, new={}, new_first=3, new_last=2},
{old={4, 5}, old_first=4, old_last=5, new={4, 5}, new_first=3, new_last=4},
{old={}, old_first=6, old_last=5, new={6}, new_first=5, new_last=5}}
```
(when diffing tables, it is guaranteed that for matching chunks, .old and .new refer to
the same table, so `chunk.old == chunk.new` will succeed)