I have an editor container with limited width, so that automoplete tooltips displayed OK, but infos does not fit and get cut. Is it possible to display just infos outside of the editor container?
It should do that by default. Are you providing a tooltipSpace
option? Or wrapping the editor in a frame?
Turned out I have a parent element with overflow-y: auto
, but found a way how to fix the issue.
Btw, how to split an info in multiple lines? Trying to put new lines in string, but it renders in single line.
That’s a good point. This patch styles the info element so that it preserves newlines.
1 Like
Thank you.