diff --git a/doc/cp.txt b/doc/cp.txt index 3bbf716..2a5a1ae 100644 --- a/doc/cp.txt +++ b/doc/cp.txt @@ -211,7 +211,7 @@ Here's an example configuration with lazy.nvim: >lua ANSI escape codes are stripped for plain text display. Requires vim.g.terminal_color_* to be configured for proper color display. - {diff_mode} (string, default: "git") Diff backend: "none", "vim", or "git". + {diff_mode} (string, default: "none") Diff backend: "none", "vim", or "git". "none" displays plain buffers without highlighting, "vim" uses built-in diff, "git" provides character-level precision. {next_test_key} (string, default: "") Key to navigate to next test case. diff --git a/lua/cp/config.lua b/lua/cp/config.lua index a1fb62f..8bafd35 100644 --- a/lua/cp/config.lua +++ b/lua/cp/config.lua @@ -101,7 +101,7 @@ M.defaults = { filename = nil, run_panel = { ansi = true, - diff_mode = 'git', + diff_mode = 'none', next_test_key = '', prev_test_key = '', toggle_diff_key = 't',