Everything that is prefixed with $ in FASMW will be highlighted as a number (green by default).
So I am doing this in a highlight_inst.inc file:
$mov fix mov
$add fix add
; ... for all instructions used
; ....
And then write my code like this:
include 'highlight_inst.inc'
$mov eax,1
$vmulps ymm0,ymm1,ymm2
$vbroadcastss ymm3,[value]
$imul r12d,r13d
To get instructions highlighting.
Just a little trick I use. The code is far more readable for me.
Additionaly, thanks to $ prefix instruction column is perfectly aligned (because all instructions begins with the same char).