-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add heredoc delimiter documentation on hover (#2617)
Co-authored-by: Nick Schwaderer <[email protected]>
- Loading branch information
Showing
9 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"params": [ | ||
{ | ||
"line": 0, | ||
"character": 2 | ||
} | ||
], | ||
"result": { | ||
"contents": { | ||
"kind": "markdown", | ||
"value": "This is a heredoc definition using the `HEREDOC` delimiter. Indentation will be considered part of the string." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"params": [ | ||
{ | ||
"line": 0, | ||
"character": 2 | ||
} | ||
], | ||
"result": { | ||
"contents": { | ||
"kind": "markdown", | ||
"value": "This is a heredoc definition using the `HEREDOC` delimiter. Indentation will be considered part of the string." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"params": [ | ||
{ | ||
"line": 0, | ||
"character": 2 | ||
} | ||
], | ||
"result": { | ||
"contents": { | ||
"kind": "markdown", | ||
"value": "This is a squiggly heredoc definition using the `HEREDOC` delimiter. Indentation will be ignored in the resulting string." | ||
} | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<<-HEREDOC | ||
some text#{1 + 1}other text | ||
HEREDOC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<<HEREDOC | ||
some text#{1 + 1}other text | ||
HEREDOC |
File renamed without changes.