Packages
Packages copied to clipboard
[D] Syntax Highlighting lack of support for Interpolation Expression Sequence
What happened?
D has recently added a new feature called "Interpolation Expression Sequence"
Using build 4169 of Sublime Text the D syntax seems to lack support for it.
import std.conv : text;
send_data(i"HTTP/1.1 $(this.code) NT\r\ncontent-type: $(this.content_type)\r\ncontent-length: $(this.content_length)\r\n\r\n".text);