-
Notifications
You must be signed in to change notification settings - Fork 457
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
Header auto completion is broken in the newest version #422
Comments
@Emory-M you can download the latest version 0.22.2 to verify it. |
@Huachao It's working, Thank you! |
@Emory-M I add the header related lines for |
@MisLink what's the language of your file? |
Well.. which kind of language? My vscode language is zh-cn, http file's language is associated to http, all my projects are pure python.. |
@MisLink could you please check the output window of VSCode of the |
@Huachao I changed the |
@MisLink Is your |
Nope, it's not blank, there are some requests created by snippets. I think I found the difference: my old project has these workspace config about rest-client but new one hasn't: "rest-client.environmentVariables": {
"$shared": {
"content_type": "application/json"
},
"local": {
"host": "http://127.0.0.1:5000"
},
"dev": {
"host": "***:5001"
},
"prod": {
"host": "***"
}
} Commenting these lines causes auto-complete to fail. "rest-client.environmentVariables": {
"$shared": {},
"local": {}
} auto-complete back to normal. |
Steps to Reproduce:
The text was updated successfully, but these errors were encountered: