Skip to content

Commit 2607f63

Browse files
committed
nvim: set packpath to empty on newChildProcess
Signed-off-by: Koichi Shiraishi <[email protected]>
1 parent 8de8ddf commit 2607f63

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

nvim/nvim_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ func newChildProcess(tb testing.TB) (v *Nvim, cleanup func()) {
7070
}
7171
}
7272

73+
if err := v.Command("set packpath="); err != nil {
74+
tb.Fatal(err)
75+
}
76+
7377
return v, cleanup
7478
}
7579

0 commit comments

Comments
 (0)