fix missing key

This commit is contained in:
Barrett Ruth 2025-10-02 10:26:15 -04:00
parent 57be0c0044
commit 00a1d57005
2 changed files with 3 additions and 2 deletions

View file

@ -535,7 +535,8 @@ RUN PANEL KEYMAPS *cp-test-keys*
<c-p> Navigate to previous test case (configurable via <c-p> Navigate to previous test case (configurable via
run_panel.prev_test_key) run_panel.prev_test_key)
t Cycle through diff modes: none → git → vim t Cycle through diff modes: none → git → vim
q Exit run panel/interactive terminal and restore layout q Exit run panel and restore layout
<c-q> Exit interactive terminal and restore layout
Diff Modes ~ Diff Modes ~

View file

@ -92,7 +92,7 @@ function M.toggle_interactive()
vim.fn.chansend(vim.b.terminal_job_id, binary .. '\n') vim.fn.chansend(vim.b.terminal_job_id, binary .. '\n')
vim.keymap.set('t', config.run_panel.close_key, function() vim.keymap.set('t', '<c-q>', function()
M.toggle_interactive() M.toggle_interactive()
end, { buffer = term_buf, silent = true }) end, { buffer = term_buf, silent = true })