From 2f95423c27813d664c2fe22a3e695941a7e62864 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Mon, 15 Sep 2025 17:54:35 -0400 Subject: [PATCH] feat: deprecate initial diff --- doc/cp.txt | 12 +++-------- lua/cp/init.lua | 56 ------------------------------------------------- 2 files changed, 3 insertions(+), 65 deletions(-) diff --git a/doc/cp.txt b/doc/cp.txt index 62cc2e1..ad69836 100644 --- a/doc/cp.txt +++ b/doc/cp.txt @@ -55,9 +55,6 @@ Action Commands ~ :CP debug Compile with debug flags and run current problem. Includes sanitizers and debug symbols. -:CP diff Enter diff mode to compare actual vs expected - output. Run again to exit diff mode. - Navigation Commands ~ :CP next Navigate to next problem in current contest. @@ -241,15 +238,12 @@ Example: Setting up and solving AtCoder contest ABC324 5. If needed, debug: > :CP debug < -6. Compare output visually: > - :CP diff -< -7. Move to next problem: > +6. Move to next problem: > :CP next < This automatically sets up problem B -8. Continue solving problems with :CP next/:CP prev navigation -9. Submit solutions on AtCoder website +7. Continue solving problems with :CP next/:CP prev navigation +8. Submit solutions on AtCoder website Example: Quick setup for single Codeforces problem > :CP codeforces 1933 a " One command setup diff --git a/lua/cp/init.lua b/lua/cp/init.lua index 6f49f81..cb39649 100644 --- a/lua/cp/init.lua +++ b/lua/cp/init.lua @@ -192,60 +192,6 @@ local function debug_problem() end) end -local function diff_problem() - if state.diff_mode then - vim.cmd.diffoff() - if state.saved_session then - vim.cmd(("source %s"):format(state.saved_session)) - vim.fn.delete(state.saved_session) - state.saved_session = nil - end - if state.temp_output then - vim.fn.delete(state.temp_output) - state.temp_output = nil - end - state.diff_mode = false - return - end - - local problem_id = get_current_problem() - if not problem_id then - return - end - - local ctx = problem.create_context(state.platform, state.contest_id, state.problem_id, config) - - if vim.fn.filereadable(ctx.expected_file) == 0 then - logger.log("no expected output file found", vim.log.levels.WARN) - return - end - - if vim.fn.filereadable(ctx.output_file) == 0 then - logger.log("no output file found. run the problem first", vim.log.levels.WARN) - return - end - - local output_lines = vim.fn.readfile(ctx.output_file) - local actual_output = {} - for i = 1, #output_lines do - if output_lines[i]:match("^%[code%]:") then - break - end - table.insert(actual_output, output_lines[i]) - end - - state.temp_output = vim.fn.tempname() - vim.fn.writefile(actual_output, state.temp_output) - - state.saved_session = vim.fn.tempname() - vim.cmd(("mksession! %s"):format(state.saved_session)) - - vim.cmd("silent only") - vim.cmd(("edit %s"):format(state.temp_output)) - vim.cmd.diffthis() - vim.cmd(("vertical diffsplit %s"):format(ctx.expected_file)) - state.diff_mode = true -end ---@param delta number 1 for next, -1 for prev ---@param language? string @@ -381,8 +327,6 @@ function M.handle_command(opts) run_problem() elseif cmd.action == "debug" then debug_problem() - elseif cmd.action == "diff" then - diff_problem() elseif cmd.action == "next" then navigate_problem(1, cmd.language) elseif cmd.action == "prev" then