🌱 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 buffer name in `isemptysession()`

robin b1167a54 706c7a8b

+3 -3
+3 -3
plugin/nivvie.lua
··· 70 70 bufs = vim 71 71 .iter(bufs) 72 72 :filter(function(buf) 73 - return vim.api.nvim_buf_is_valid(buf) and vim.bo[buf].buftype == '' 73 + return vim.api.nvim_buf_is_valid(buf) 74 + and vim.bo[buf].buftype == '' 75 + and #vim.api.nvim_buf_get_name(buf) > 0 74 76 end) 75 77 :totable() 76 78 ··· 153 155 end) 154 156 end, 155 157 }) 156 - 157 - return