deep-assoc-completion icon indicating copy to clipboard operation
deep-assoc-completion copied to clipboard

Add syntax highlighting for multiline array PHPDoc

Open maicol07 opened this issue 3 years ago • 1 comments

Example:

/**
 * @param array{
 *	a: int,
 *	b: int
 *  } $arr
 */
 function c(array $arr) {}

Should be highlighted like the one-line syntax:

/**
 * @param array{a: int,b: int} $arr
 */ 
 function c(array $arr) {}

maicol07 avatar Oct 27 '21 10:10 maicol07

Related: #132

It would indeed be nice, though I gave up as I did not manage to make it work with Language Injections ;c

klesun avatar Oct 27 '21 12:10 klesun