-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
Add textDocument/signatureHelp support for Dockerfile instructions #162
Labels
Comments
rcjsuen
added a commit
that referenced
this issue
Aug 23, 2017
Signature help for instruction arguments have been added for: - ARG - SHELL - STOPSIGNAL - USER - WORKDIR Signed-off-by: Remy Suen <[email protected]>
rcjsuen
added a commit
that referenced
this issue
Aug 23, 2017
Signed-off-by: Remy Suen <[email protected]>
rcjsuen
added a commit
that referenced
this issue
Aug 25, 2017
Signed-off-by: Remy Suen <[email protected]>
rcjsuen
added a commit
that referenced
this issue
Aug 26, 2017
Signed-off-by: Remy Suen <[email protected]>
rcjsuen
added a commit
that referenced
this issue
Aug 27, 2017
Signed-off-by: Remy Suen <[email protected]>
rcjsuen
added a commit
that referenced
this issue
Aug 29, 2017
Signed-off-by: Remy Suen <[email protected]>
rcjsuen
added a commit
that referenced
this issue
Aug 30, 2017
When multiple whitespace characters are used to delimit multiple ENV variables or LABEL metadata properties, the parser will incorrectly identify extra arguments in the instruction. This causes an issue when trying to process the signature information at the current text cursor because the extra argument's range will conflict with the expected signature parameter at the current position. The parser will now ignore multiple whitespace characters when trying to process the arguments of an ENV or LABEL instruction and not automatically assume that there is a new argument to process. Signed-off-by: Remy Suen <[email protected]>
rcjsuen
added a commit
that referenced
this issue
Aug 31, 2017
Signed-off-by: Remy Suen <[email protected]>
rcjsuen
added a commit
that referenced
this issue
Aug 31, 2017
Signed-off-by: Remy Suen <[email protected]>
rcjsuen
added a commit
that referenced
this issue
Aug 31, 2017
Signed-off-by: Remy Suen <[email protected]>
rcjsuen
added a commit
that referenced
this issue
Aug 31, 2017
Signed-off-by: Remy Suen <[email protected]>
rcjsuen
added a commit
that referenced
this issue
Sep 1, 2017
Signed-off-by: Remy Suen <[email protected]>
rcjsuen
added a commit
that referenced
this issue
Sep 1, 2017
Signed-off-by: Remy Suen <[email protected]>
rcjsuen
added a commit
that referenced
this issue
Sep 2, 2017
Signed-off-by: Remy Suen <[email protected]>
Whoops. Reopening as it's not quite done just yet. Still need to add support for the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Based on the state of the Dockerfile and the current cursor position, we should offer contextual signature help about an instruction and its argument(s).
The text was updated successfully, but these errors were encountered: