File tree Expand file tree Collapse file tree 3 files changed +393
-7
lines changed
Expand file tree Collapse file tree 3 files changed +393
-7
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ All notable changes to the Docker Language Server will be documented in this fil
99- Compose
1010 - textDocument/completion
1111 - check the prefix string before trying to use it for looking up image tags ([ #486 ] ( https://github.com/docker/docker-language-server/issues/486 ) )
12+ - textDocument/documentLink
13+ - correct the link range if the string is wrapped in single quotes ([ #487 ] ( https://github.com/docker/docker-language-server/issues/487 ) )
1214- Bake
1315 - fix parsing error caused by referencing a variable with no value ([ #490 ] ( https://github.com/docker/docker-language-server/issues/490 ) )
1416
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import (
1818
1919func createRange (t * token.Token , length int ) protocol.Range {
2020 offset := 0
21- if t .Type == token .DoubleQuoteType {
21+ if t .Type == token .DoubleQuoteType || t . Type == token . SingleQuoteType {
2222 offset = 1
2323 }
2424 return protocol.Range {
You can’t perform that action at this time.
0 commit comments