Hyperline / hyperline

✨ Status line plugin for Hyper ✨
MIT License
619 stars 120 forks source link

Hyperline blocking last line of text #192

Open OnTheRicky opened 4 years ago

OnTheRicky commented 4 years ago

hyperline is blocking the last line of text in terminal.

I have the following installed: plugins: ["hyper-search", "verminal", "hyperline"]

arthur798 commented 4 years ago

same for me? any update on this?

fisehara commented 3 years ago

Same for me. It depends on the window size if the hyperline is covering the last line or not. In fullscreen on macos 16" the hyperline is not covering the last line.

ptrrdrck commented 3 years ago

I encountered this issue also and made the following update to padding settings in .hyper.js as a workaround:

module.exports = { config: { padding: '12px 14px 22px', } }

This reads as padding-top, padding right+left, padding-bottom. Note: I chose 22px as it seemed the be the minimum additional padding to prevent hyperline from interfering with the bottom-most line/new prompt with window resizing.