You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before starting with my Issue / Idea, I'm not sure if this ticket might be a replication of #2539. If so, please forgive me as I haven't found the exact issue on the list provided in the aforementioned ticket.
According to README.md documentation there should be Intellisense support for Dockerfile and docker-compose.yml files with completions and syntax help. However, I have tested this functionality on docker-compose.yml files in both a Windows environment and Linux environment without any success. Only the yaml syntax is working. but no completion nor specific docker syntax is available.
Windows Environment
Linux Environment
vscode version: 1.61.0 (user setup)
vscode version: 1.61.0
OS: Windows_NT x64 10.0.19043
OS: Linux x64 5.13.0-7614-generic
Having said all this. I went into the code to see if I could figure out why this wasn't working and after a little digging, I find out that in the code there is only one call to the registerCompletionItemProvider and it is just for the dockerfile and there's no call for docker-compose.yml.
Most likely there's something I'm not seeing here. So I'm wondering:
Does this means the documentation is incorrect?
Am I missing some configuration for this to work?
Is my extension broken?
The text was updated successfully, but these errors were encountered:
@iamsavinaykumar is right, this is intentional for now. We're working on a brand new Compose language service and some features didn't make it into 1.17. With the upcoming 1.18 release, we're adding back the vast majority of the autocompletions. If the functionality is really needed for now, I'd downgrade to 1.16 until 1.18 is available.
Before starting with my Issue / Idea, I'm not sure if this ticket might be a replication of #2539. If so, please forgive me as I haven't found the exact issue on the list provided in the aforementioned ticket.
According to README.md documentation there should be Intellisense support for
Dockerfile
anddocker-compose.yml
files with completions and syntax help. However, I have tested this functionality ondocker-compose.yml
files in both a Windows environment and Linux environment without any success. Only theyaml
syntax is working. but no completion nor specific docker syntax is available.Having said all this. I went into the code to see if I could figure out why this wasn't working and after a little digging, I find out that in the code there is only one call to the
registerCompletionItemProvider
and it is just for thedockerfile
and there's no call fordocker-compose.yml
.Most likely there's something I'm not seeing here. So I'm wondering:
The text was updated successfully, but these errors were encountered: