-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
Fixes #2346 #2347
Fixes #2346 #2347
Conversation
src/cmd_line/commandLine.ts
Outdated
true | ||
); | ||
if (e.code === ErrorCode.E492) { | ||
await Neovim.command(vimState, command); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Even for users that haven't configured to use neovim, you want to use neovim as a fallback?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My bad. You're right, there should be another check here.
Travis tests have failedHey Horace He, Node.js: 8.9.1git ls-tree -r HEAD --name-only | grep ".*.[t|j]s$" | xargs ./node_modules/prettier/bin/prettier.js --write --print-width 100 --single-quote --trailing-comma es5
gulp
|
Travis tests have failedHey Horace He, Node.js: 8.9.1git ls-tree -r HEAD --name-only | grep ".*.[t|j]s$" | xargs ./node_modules/prettier/bin/prettier.js --write --print-width 100 --single-quote --trailing-comma es5
if [[ $(git diff-index HEAD --) ]]; then ./node_modules/prettier/bin/prettier.js -v; git diff; echo "Prettier Failed. Run `gulp` or `gulp forceprettier`"; exit 1; else echo "Prettier passed."; fi
gulp
npm test --silent;
|
Travis tests have failedHey Horace He, Node.js: 8.9.1git ls-tree -r HEAD --name-only | grep ".*.[t|j]s$" | xargs ./node_modules/prettier/bin/prettier.js --write --print-width 100 --single-quote --trailing-comma es5
if [[ $(git diff-index HEAD --) ]]; then ./node_modules/prettier/bin/prettier.js -v; git diff; echo "Prettier Failed. Run `gulp` or `gulp forceprettier`"; exit 1; else echo "Prettier passed."; fi
gulp
npm test --silent;
|
Travis tests have failedHey Horace He, Node.js: 8gulp forceprettier
gulp
npm test --silent;
|
Travis tests have failedHey Horace He, Node.js: 8gulp forceprettier
if [[ $(git diff-index HEAD --) ]]; then git diff; echo "Prettier Failed. Run `gulp` or `gulp forceprettier`"; exit 1; fi
gulp
|
Finally, it works. I didn't realize Travis built with some version of the main branch merged with the PR. |
#2346 (comment)
explains the problem and the fix.