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
In my case, the default encoding of cmd is not 65001(utf-8), which causes the results returned by the database, mysql, to be mismatched.
After making this change, the problem was solved.
" autoload/db.vim 188 | call insert(a:cmd, "&&") 189 | call insert(a:cmd, "65001>nul") 190 | call insert(a:cmd, "chcp") 191 | let job = jobstart(join(a:cmd), {
However, I don't know much about how jobs work and I'm not sure if this is the best way to fix this problem.
jobs
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In my case, the default encoding of cmd is not 65001(utf-8), which causes the results returned by the database, mysql, to be mismatched.
After making this change, the problem was solved.
However, I don't know much about how
jobs
work and I'm not sure if this is the best way to fix this problem.The text was updated successfully, but these errors were encountered: