mirror of
https://github.com/kristoferssolo/telescope-frecency.nvim.git
synced 2025-10-21 20:10:38 +00:00
* docs: fix the format for some docs * fix!: show debug msg only when `debug` is `true` Fix #212 * test: enable debug logging in tests
9 lines
196 B
Lua
9 lines
196 B
Lua
local config = require "frecency.config"
|
|
local log = require "plenary.log"
|
|
|
|
return setmetatable({}, {
|
|
__index = function(_, key)
|
|
return config.debug and log[key] or function() end
|
|
end,
|
|
})
|