diff options
Diffstat (limited to 'lua/core')
-rw-r--r-- | lua/core/misc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/core/misc.lua b/lua/core/misc.lua index 41cbf93..6f69e81 100644 --- a/lua/core/misc.lua +++ b/lua/core/misc.lua @@ -13,7 +13,7 @@ end function M.include(fn) if not pcall(require, fn) then - vim.notify('Could not find '..fn, vim.log.levels.WARN, { title = M.appid }) + vim.notify('Could not find "'..fn, vim.log.levels.WARN..'"', { title = M.appid }) end end |