-
Notifications
You must be signed in to change notification settings - Fork 8.4k
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
Allow more customization at the top and bottom of the terminal. Picture inside. #16283
Comments
Let's try and address these seperately: Top:
Bottom: Well now, that's curious for sure. You've presumably just maximized the window, but it didn't take the whole vertical space? That's certainly unexpected. Even with |
Top: Bottom: Other than that it seems to not matter what shell I use, they all have spaces at the bottom. |
We're curious about the space at the bottom. Could you share your settings.json? That shouldn't be happening, but it could be that it's due to some opacity shenanigans. |
(the opacity hijinks being: we suspect the background opacity is set to like, 0, and there's a <1 character tall gap that's left between the last row and the bottom of the buffer. But! the vim background isn't the default background color, so we don't apply the opacity to the main body of the Terminal. So what you get is the body of vim being opaque, and the "gutter" being transparent) |
The only thing I can think of is the opacity on the images but I tried changing that back to 1 but nothing changed. I guess the background would be dark again if I had no image but the neovim instance should be pulling all the way down to the bottom of the window right?
|
Ah yea that'll do it. It's not the desktop we're seeing there, it's the background image. Got it. That makes way more sense. Yea this definitely just looks like #13155 / #12804 (feels like there have been more than just those). There's literally not enough space for the Terminal to fit a character into that space. The Terminal doesn't even report that as usable space to neovim, so neovim has no chance to actually fill it. The Terminal filled the gutters with the "default background", which is transparent + your background image, but then neovim filled everything else up with not the default background, hence why this happens. You could maybe fudge the font sizing to more exactly fill the buffer, if you typically run the terminal maximized. |
Description of the new feature/enhancement
Would like to remove the space at the bottom and be able to make the bar at the top smaller so that more code can show on the screen
Proposed technical implementation details (optional)
Remove the space at the bottom and let us resize the bar at the top to our liking.
The text was updated successfully, but these errors were encountered: