| Summary: |
Syntax highliting not working properly for perl when using heredoc |
| Product: |
[Frameworks and Libraries] frameworks-syntax-highlighting
|
Reporter: |
zemmoura.khalil |
| Component: |
syntax | Assignee: |
KWrite Developers <kwrite-bugs-null> |
| Status: |
RESOLVED
FIXED
|
|
|
| Severity: |
normal
|
|
|
| Priority: |
NOR
|
|
|
| Version First Reported In: |
unspecified | |
|
| Target Milestone: |
--- | |
|
| Platform: |
Arch Linux | |
|
| OS: |
Linux | |
|
|
Latest Commit:
|
https://commits.kde.org/syntax-highlighting/2f8a2406fc925583d7a1c548f99675e1815733c7
|
Version Fixed/Implemented In:
|
5.37
|
|
Sentry Crash Report:
|
|
| |
Hi, Consider this perl code: $str = << ' EOS'; this is my string and it's continuation EOS $str2 = 'this is the second string'; the syntax highlighting is completely messy for all the code after it To get it right again i have to get <<EOS>> at the beggining of the line and suppress the space in the docstring declaration as follow $str = << 'EOS'; this is my string and it's continuation EOS Thank's for your efforts