···2020 if opts and next(opts) ~= nil then
2121 ok("setup() has been called")
2222 info("max_entries = " .. tostring(opts.max_entries))
2323- info("yank_register = " .. tostring(opts.registers and opts.registers.yank_register))
2323+ info(
2424+ "yank_register = "
2525+ .. tostring(opts.registers and opts.registers.yank_register)
2626+ )
2427 info("persist_type = " .. tostring(opts.persist_type))
2528 else
2626- warn("setup() has not been called — defaults will apply on first yank")
2929+ warn(
3030+ "setup() has not been called — defaults will apply on first yank"
3131+ )
2732 end
28332934 local clipboard = vim.fn.has("clipboard") == 1
3035 if clipboard then
3136 ok("clipboard provider available")
3237 else
3333- warn("no clipboard provider detected — `+` register yanks will not be captured")
3838+ warn(
3939+ "no clipboard provider detected — `+` register yanks will not be captured"
4040+ )
3441 end
35423643 if opts and opts.persist_type == "sqlite" then