ronisbr / TerminalPager.jl

Pure Julia implementation of the command less
MIT License
116 stars 8 forks source link

Last line is not showing #3

Closed r2cp closed 3 years ago

r2cp commented 3 years ago

Thank you for the great work! 🙌🏽

I noticed that the last line is not showing when reaching the end of the rows. Is this expected?

To reproduce:

using DataFrames
df = DataFrame(x = rand(120), y = rand(1:100, 120))
df |> pager

or

data = [rand(120) rand(1:100, 120)]
data |> pager
ronisbr commented 3 years ago

Thanks! I fixed it in main.