We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb91736 commit 75bf3a6Copy full SHA for 75bf3a6
packages/neovim-common/src/ide/neovim/NeovimEdit.ts
@@ -15,6 +15,10 @@ export default async function neovimEdit(
15
window: Window,
16
edits: Edit[],
17
): Promise<boolean> {
18
+ // Remove one edit to make sure CI breaks
19
+ if (edits.length > 0) {
20
+ edits = edits.slice(0, edits.length - 1);
21
+ }
22
console.debug("neovimEdit() [unsorted]:");
23
for (const edit of edits) {
24
console.debug(
0 commit comments