Commit Briefs

Omar Polo

arithmetic on void pointers is a GNU extension apparently

Another useful warning got thanks to -pedantic.




Omar Polo

dropping unused prototype


Omar Polo

Farewell, nth_line!

You were a good function. Slow and avoidable actually, but a good function indeed.



Omar Polo

lazy loading tabs on startup

don't load all the tabs when starting up, only the current one. Defer the loading of the others when switching to them.


Omar Polo

add set-title option




Omar Polo

separate the tabs with a vertical bar

while there also simplify a bit the handling of the pair for tabs/current-tab.


Omar Polo

typo


Omar Polo

simplify print_vlines


Omar Polo

emojified link lines!!


Omar Polo

initialize events: prevents libevent2 from crashing

clechoev and resizeev are two globally defined event, and thus guaranteed to be zeroed. While OpenBSD' libevent1 is fine when calling event_pending on such events, libevent2 complains and, probably depending on which flags were used, crashes. Prompted and tested by Andrea Feletto, thanks!