From a40a53fafacd53427dffb14935c15448cb62fe43 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sun, 21 Sep 2025 14:33:34 -0400 Subject: [PATCH] fix(ci): file import paths after refacotr --- README.md | 6 +++--- spec/execute_spec.lua | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2e9ee89..0766ca4 100644 --- a/README.md +++ b/README.md @@ -28,11 +28,11 @@ cp.nvim follows a simple principle: **solve locally, submit remotely**. ### Basic Usage -1. **Find a problem** on the judge website -2. **Set up locally** with `:CP ` +1. **Find a contest or problem** on the judge website +2. **Set up locally** with `:CP []` ``` - :CP codeforces 1848 A + :CP codeforces 1848 ``` 3. **Code and test** with instant feedback and rich diffs diff --git a/spec/execute_spec.lua b/spec/execute_spec.lua index 09914d6..38784be 100644 --- a/spec/execute_spec.lua +++ b/spec/execute_spec.lua @@ -416,7 +416,7 @@ describe('cp.execute', function() } end - local execute_command = require('cp.execute').execute_command + local execute_command = require('cp.runner.execute').execute_command or function(command, stdin_data, timeout) local redirected_cmd = vim.deepcopy(command) if #redirected_cmd > 0 then