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
FROM alpine ENV var=value RUN a \ #c \ $var
Hovering over $var should resolve to value.
$var
value
import { DockerfileLanguageServiceFactory } from './main' const service = DockerfileLanguageServiceFactory.createLanguageService(); let content = `FROM alpine ENV var=value RUN a \\ #c \\ $var`; let items = service.computeHover(content, { line: 4, character: 3 }); console.log(items);
However, null is returned instead.
null
The text was updated successfully, but these errors were encountered:
b7960e6
rcjsuen
No branches or pull requests
Hovering over
$var
should resolve tovalue
.However,
null
is returned instead.The text was updated successfully, but these errors were encountered: