Keep an eye on those revision descriptions.

fix: additional handling of potentially non-existent files, just in case

bpavuk.neocities.org a86147cd 7d367459

verified
Changed files
+5
lua
jj-log
+5
lua/jj-log/init.lua
··· 9 9 return 10 10 end 11 11 12 + if not vim.fn.filereadable(current_file) then 13 + vim.api.nvim_buf_del_var(bufnr, "jj_desc") 14 + return 15 + end 16 + 12 17 local jj_root = vim.fs.find( 13 18 ".jj", { 14 19 upward = true,