fix(diff): default to boring view
This commit is contained in:
parent
ff20efca71
commit
0851339e63
2 changed files with 2 additions and 2 deletions
|
|
@ -211,7 +211,7 @@ Here's an example configuration with lazy.nvim: >lua
|
||||||
ANSI escape codes are stripped for plain text display.
|
ANSI escape codes are stripped for plain text display.
|
||||||
Requires vim.g.terminal_color_* to be configured for
|
Requires vim.g.terminal_color_* to be configured for
|
||||||
proper color display.
|
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,
|
"none" displays plain buffers without highlighting,
|
||||||
"vim" uses built-in diff, "git" provides character-level precision.
|
"vim" uses built-in diff, "git" provides character-level precision.
|
||||||
{next_test_key} (string, default: "<c-n>") Key to navigate to next test case.
|
{next_test_key} (string, default: "<c-n>") Key to navigate to next test case.
|
||||||
|
|
|
||||||
|
|
@ -101,7 +101,7 @@ M.defaults = {
|
||||||
filename = nil,
|
filename = nil,
|
||||||
run_panel = {
|
run_panel = {
|
||||||
ansi = true,
|
ansi = true,
|
||||||
diff_mode = 'git',
|
diff_mode = 'none',
|
||||||
next_test_key = '<c-n>',
|
next_test_key = '<c-n>',
|
||||||
prev_test_key = '<c-p>',
|
prev_test_key = '<c-p>',
|
||||||
toggle_diff_key = 't',
|
toggle_diff_key = 't',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue