Wish List - Text between controls for plug-in GUI

Currently, text may be displayed at the top of a plug-in GUI using:
;info “This text is displayed in the plug-in interface”

For some plug-ins it could considerably improve usability if text could also be displayed between controls.

Example - some example code and the GUI that it would produce:

;name "Channel Mixer"
;info "Select a preset OR use the sliders.nNegative values invert the waveform.n"
;control preset "Presets" choice "Use Custom" 0
;info "o--- New Left Channel ---o"
;control L-to-L "from Left channel" real "%" 0 -100 100
;control L-to-L "from Right channel" real "%" 0 -100 100
;info "o--- New Right Channel ---o"
;control L-to-L "from Left channel" real "%" 0 -100 100
;control L-to-R "from Right channel" real "%" 0 -100 100

channel-mixer-gui.png
Without this feature the interface is limited to one unbroken stack of controls:

;name "Channel Mixer"
;info "Select a preset OR use the sliders.nNegative values invert the waveform.n"
;control preset "Presets" choice "Use Custom" 0
;control L-to-L "New Leftnfrom Left channel" real "%" 0 -100 100
;control L-to-L "New Leftnfrom Right channel" real "%" 0 -100 100
;control L-to-L "New Rightnfrom Left channel" real "%" 0 -100 100
;control L-to-R "New Rightnfrom Right channel" real "%" 0 -100 100

without-text.png