platformio / platformio-atom-ide-terminal

A terminal package for Atom, complete with themes, API and more for PlatformIO IDE
https://atom.io/packages/platformio-ide-terminal
MIT License
612 stars 162 forks source link

[FR] scrollbar #9

Open farfromrefug opened 8 years ago

farfromrefug commented 8 years ago

I really like your implementation and would like to use it with the atom-build package. Now there is some little things i miss. One of them is the scrollbar. When launching a build i might have a lot of lines! Showing the scrollbar would be amazing!

Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.

the-j0k3r commented 5 years ago

Its probably related to https://github.com/platformio/platformio-atom-ide-terminal/blob/master/styles/platformio-ide-terminal.less#L76

However in Atom, Ive added


.platformio-ide-terminal.terminal-view .xterm > .terminal {
  overflow-y: visible !important;
}
``` and nothing has changed
the-j0k3r commented 5 years ago

Managed to get both scrollbars (only works like below and both y/x) showing but vertical (y) doesnt work, clearly scrolling buffer is not the same.

.platformio-ide-terminal.terminal-view .xterm > .terminal {
  overflow: show !important;
}
SarenT commented 4 years ago

Anyone working on this?

the-j0k3r commented 4 years ago

Anyone working on this?

No

If you want scrollbars now please see x-terminal else you would have to wait for xterm.js to be implemented

Also theres a direct fork of platformio-ide-terminal now written in JS with a few fixes like dragging and dropping existing terminals into docks or panes and other minor fixes. See terminus

SarenT commented 4 years ago

Thanks a lot! x-terminal is much better than the default terminal. It solves multiple problems at once. I didn't try terminus though. I couldn't figure out how to make x-terminal default terminal though. Or is there any way at all? If I disable platformio-ide-terminal, serial monitor doesn't start with a warning that the terminal is disabled. There are some guides for windows to change terminal but I don't know how that applies to x-terminal package within Atom/PlatformIO. For now, I can start a terminal and run serial monitor manually though.