feat(diff): Add options to diff command to allow diffing only current buffer

This commit is contained in:
NicolasGB
2025-07-03 19:04:00 +02:00
parent 4dd51c5ba9
commit 59c0750437
3 changed files with 20 additions and 4 deletions
+1
View File
@@ -44,6 +44,7 @@ local function get_files()
local change, file_path = line:match("^(%a)%s(.+)$")
table.insert(files, {
text = file_path,
file = file_path,
change = change,
diff_cmd = string.format("jj diff %s", file_path),