fix(ci): format

This commit is contained in:
Barrett Ruth 2025-09-19 19:22:13 -04:00
parent 99340e551b
commit 0b14c2bb87
2 changed files with 55 additions and 49 deletions

View file

@ -152,6 +152,19 @@ local function get_current_problem()
return filename
end
local function create_buffer_with_options(filetype)
local buf = vim.api.nvim_create_buf(false, true)
vim.api.nvim_set_option_value('bufhidden', 'wipe', { buf = buf })
vim.api.nvim_set_option_value('readonly', true, { buf = buf })
vim.api.nvim_set_option_value('modifiable', false, { buf = buf })
if filetype then
vim.api.nvim_set_option_value('filetype', filetype, { buf = buf })
end
return buf
end
local setup_keybindings_for_buffer
local function toggle_run_panel(is_debug)
if state.run_panel_active then
if current_diff_layout then
@ -230,15 +243,6 @@ local function toggle_run_panel(is_debug)
end
end
local function create_buffer_with_options()
local buf = vim.api.nvim_create_buf(false, true)
vim.api.nvim_set_option_value('bufhidden', 'wipe', { buf = buf })
vim.api.nvim_set_option_value('readonly', true, { buf = buf })
vim.api.nvim_set_option_value('modifiable', false, { buf = buf })
vim.api.nvim_set_option_value('filetype', 'cptest', { buf = buf })
return buf
end
local function create_vim_diff_layout(parent_win, expected_content, actual_content)
local expected_buf = create_buffer_with_options()
local actual_buf = create_buffer_with_options()
@ -418,7 +422,7 @@ local function toggle_run_panel(is_debug)
refresh_run_panel()
end
local function setup_keybindings_for_buffer(buf)
setup_keybindings_for_buffer = function(buf)
vim.keymap.set('n', 'q', function()
toggle_run_panel()
end, { buffer = buf, silent = true })