Xterm.js: No scroll bar on terminal

Created on 2 Jun 2016  路  6Comments  路  Source: xtermjs/xterm.js

It would be great if a virtual scroll bar was provided.

typenhancement

Most helpful comment

@parisk yes, it's a large element that's programmatically sized and is used for the scrollbar. After playing with this implementation I ended up getting it working but needed to pull .xterm-rows out of .xterm-viewport, otherwise every refresh would recall the scroll method. That made it very difficult to handle the 3 scroll cases; wheel, drag and drop scroll bar and up/down arrows.

I'll probably put out a PR later today.

All 6 comments

The terminal scrolling definitely needs an enhancement and physical scrolling with a scrollbar would be a great addition. The only tricky thing to do there is handling switching back and forth with curses applications like Vim.

hterm handles the scrollbar really well but only has the currently displayed viewport in the DOM. We should see how they implement it.

I'm going to work on this as part of vscode 1.5.0, the current rough plan/approach is:

  • Detect row height and set height and line-height explicitly on .xterm-rows (will resolve #149)
  • Wrap .xterm-rows in a .xterm-viewport element which has overflow-y: scroll
  • Create an .xterm-scroll-area element which sizes based on the total number of rows in the buffer, this will be invisible but will position itself based on y, ybase and ydisp

Sounds 馃憤 . What is the purpose of .xterm-scroll-area element though? Will it be used for the displaying of the scroll bar?

@parisk yes, it's a large element that's programmatically sized and is used for the scrollbar. After playing with this implementation I ended up getting it working but needed to pull .xterm-rows out of .xterm-viewport, otherwise every refresh would recall the scroll method. That made it very difficult to handle the 3 scroll cases; wheel, drag and drop scroll bar and up/down arrows.

I'll probably put out a PR later today.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

goxr3plus picture goxr3plus  路  3Comments

Tyriar picture Tyriar  路  4Comments

LB-J picture LB-J  路  3Comments

Tyriar picture Tyriar  路  4Comments

jerch picture jerch  路  3Comments