-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add padding to build log terminal #2543
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@menghif I retest your code, and the cursor can display on the second line. However when I put in some letters, they are still on the first line.
The convertEol: true, means "When enabled the cursor will be set to the beginning of the next line with every new line. This is equivalent to sending '\r\n' for each '\n'. " Therefore, my point is that convertEol is the issue.
const terminal = new Terminal({
cols: 80,
rows: 30,
convertEol: true,
theme,
});
@menghif Add padding to the class ".xterm" works as well. See xtermjs/xterm.js#1208 |
Can we get an update on this? |
Sorry for the delay, @Andrewnt219's fix seems to work well! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍.
@menghif squash and rebase this, and I'll merge it! |
fyi @Yoda-Canada, this might help with your work on styling the terminal as well. |
Issue This PR Addresses
Fixes #2534
Type of Change
Description
Add
1rem
padding to build log terminal.Checklist