We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When there's a space in the project directory or even directory ancestor, it makes the test fail with the following error:
Vim:E475: Invalid value for argument cmd: '/home/....../vue' is not executable
I created a new project with pnpm create vue, enabled vitest, and kept the project name vue-project but renamed the folder afterwards to vue project.
pnpm create vue
vue-project
vue project
Looks like the bug in adapter.build_spec(), where vim.split(binary, "%s+").
adapter.build_spec()
vim.split(binary, "%s+")
The text was updated successfully, but these errors were encountered:
same:
Vim:E475: Invalid value for argument cmd: 'vitest' is not executable
Sorry, something went wrong.
No branches or pull requests
When there's a space in the project directory or even directory ancestor, it makes the test fail with the following error:
Vim:E475: Invalid value for argument cmd: '/home/....../vue' is not executable
I created a new project with
pnpm create vue
, enabled vitest, and kept the project namevue-project
but renamed the folder afterwards tovue project
.Looks like the bug in
adapter.build_spec()
, wherevim.split(binary, "%s+")
.The text was updated successfully, but these errors were encountered: