The line height configuration is only supported in the canvas renderer (as of 3.6.0).
pointer: https://github.com/xtermjs/xterm.js/blob/e736f1223f5c42eb1b0674050ae55184f2215806/src/renderer/dom/DomRenderer.ts#L53
I thought I had seen an issue for this already but wasn't able to find it now.
I don't think there's an issue but there's a comment calling this out.
Open to PRs.
You can see how this used to be handled by looking at the old DOM renderer in https://github.com/xtermjs/xterm.js/pull/938
Hello @Tyriar, I would like to tackle this one, is it just a matter of using lineHeight from options inside DomRenderer.ts and defaulting to normal otherwise?
@leomoty great!
We want it to act like line height in the canvas renderer, which is used here:
Also the value is always set so you don't need to worry about using normal:
You can see how we used to do it by looking at src/Renderer.ts in this PR:
@Tyriar this can be closed :)