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
|
|
|
|
string chunks.
|
|
|
|
|
|
|
|
## 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_line=1, old_line_end=2,
|
|
|
|
new="hello\n...\n", new_line=1, new_line_end=2},
|
|
|
|
{old="to the\n", old_line=3, old_line_end=3,
|
2017-10-26 02:25:05 -07:00
|
|
|
new="*at* the\n", new_line=3, new_line_end=3},
|
2017-10-26 02:23:41 -07:00
|
|
|
{old="world", old_line=4, old_line_end=4,
|
|
|
|
new="world", new_line=4, new_line_end=4},
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
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
|
|
|
|
```
|