fix(ci): file import paths after refacotr
This commit is contained in:
parent
e1b91ffffe
commit
a40a53fafa
2 changed files with 4 additions and 4 deletions
|
|
@ -28,11 +28,11 @@ cp.nvim follows a simple principle: **solve locally, submit remotely**.
|
||||||
|
|
||||||
### Basic Usage
|
### Basic Usage
|
||||||
|
|
||||||
1. **Find a problem** on the judge website
|
1. **Find a contest or problem** on the judge website
|
||||||
2. **Set up locally** with `:CP <platform> <contest> <problem>`
|
2. **Set up locally** with `:CP <platform> <contest> [<problem>]`
|
||||||
|
|
||||||
```
|
```
|
||||||
:CP codeforces 1848 A
|
:CP codeforces 1848
|
||||||
```
|
```
|
||||||
|
|
||||||
3. **Code and test** with instant feedback and rich diffs
|
3. **Code and test** with instant feedback and rich diffs
|
||||||
|
|
|
||||||
|
|
@ -416,7 +416,7 @@ describe('cp.execute', function()
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
local execute_command = require('cp.execute').execute_command
|
local execute_command = require('cp.runner.execute').execute_command
|
||||||
or function(command, stdin_data, timeout)
|
or function(command, stdin_data, timeout)
|
||||||
local redirected_cmd = vim.deepcopy(command)
|
local redirected_cmd = vim.deepcopy(command)
|
||||||
if #redirected_cmd > 0 then
|
if #redirected_cmd > 0 then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue