orbitalquark / textadept

Textadept is a fast, minimalist, and remarkably extensible cross-platform text editor for programmers.
https://orbitalquark.github.io/textadept
MIT License
636 stars 38 forks source link

Bottom slider/bar even on empty file (Linux) #450

Closed jozsefk9 closed 1 year ago

jozsefk9 commented 1 year ago

Anyone knows why do I get a bottom slider/bar even on empty files? textadept-slider-1 textadept-slider-2

rgieseke commented 1 year ago

I'm not sure what the reason is for the scrollbar appearing, but if you enable wrapping in your init.lua it should disappear

buffer.wrap_mode = buffer.WRAP_WORD
jozsefk9 commented 1 year ago

I'm not sure what the reason is for the scrollbar appearing, but if you enable wrapping in your init.lua it should disappear

buffer.wrap_mode = buffer.WRAP_WORD

Thank you. That worked!