remove keys

This commit is contained in:
Barrett Ruth 2025-10-02 10:23:01 -04:00
parent 91e6fbe455
commit 57be0c0044
4 changed files with 15 additions and 25 deletions

View file

@ -83,6 +83,7 @@ COMMANDS *cp-commands*
:CP cache read
View the cache in a pretty-printed lua buffer.
Exit with q.
Command Flags ~
*cp-flags*
@ -153,7 +154,6 @@ Here's an example configuration with lazy.nvim: >lua
diff_mode = 'vim',
next_test_key = '<c-n>',
prev_test_key = '<c-p>',
toggle_diff_key = '<c-q>',
max_output_lines = 50,
},
diff = {
@ -231,7 +231,6 @@ is required:
{next_test_key} (string, default: "<c-n>") Key to navigate to next test case.
{prev_test_key} (string, default: "<c-p>") Key to navigate to previous test case.
{toggle_diff_key} (string, default: "<c-t>") Key to cycle through diff modes.
{close_key} (string, default: "<c-q>") Close the run panel/interactive terminal
{max_output_lines} (number, default: 50) Maximum lines of test output.
*cp.DiffConfig*
@ -535,9 +534,8 @@ RUN PANEL KEYMAPS *cp-test-keys*
run_panel.next_test_key)
<c-p> Navigate to previous test case (configurable via
run_panel.prev_test_key)
<c-t> Cycle through diff modes: none → git → vim (configurable
via run_panel.toggle_diff_key)
<c-q> Exit run panel/interactive terminal and restore layout
t Cycle through diff modes: none → git → vim
q Exit run panel/interactive terminal and restore layout
Diff Modes ~