mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-08 03:55:04 +02:00
claude-baseline-1752140874 (startup)
This commit is contained in:
parent
b02b004f0a
commit
e8aeaf2448
2 changed files with 6 additions and 6 deletions
|
@ -56,8 +56,8 @@ function M.compute_diff(old_text, new_text)
|
|||
utils.write_file(old_file, old_text)
|
||||
utils.write_file(new_file, new_text)
|
||||
|
||||
-- Generate unified diff
|
||||
local cmd = string.format('diff -u "%s" "%s" || true', old_file, new_file)
|
||||
-- Generate unified diff with minimal context to avoid grouping nearby changes
|
||||
local cmd = string.format('diff -U1 "%s" "%s" || true', old_file, new_file)
|
||||
local diff_output = utils.exec(cmd)
|
||||
|
||||
-- Parse diff into hunks
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue