🌱 tiny neovim plugin keeping your session safe
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: check for `has('ttyin')`

robin 1c94acc0 5ca4fe44

+2 -1
+2 -1
lua/nivvie/init.lua
··· 59 59 ---- 60 60 61 61 function nivvie.isemptysession() 62 - if nivvie.stdin then 62 + -- whether StdinReadPost was handled or ttyin was set 63 + if nivvie.stdin or vim.fn.has 'ttyin' == 0 then 63 64 return false 64 65 end 65 66