diff options
author | Squibid <me@zacharyscheiman.com> | 2024-01-30 21:52:24 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-01-30 21:52:24 -0500 |
commit | d94b454eb61a0d0a99f9939560506c2db24f3315 (patch) | |
tree | 52dd40a8d51a79896750fa0fd0ea85fd3445405f /lua/core/misc.lua | |
parent | e669b3eb8e27069ed0c52ea269e3c27debb989b6 (diff) | |
download | nvim-d94b454eb61a0d0a99f9939560506c2db24f3315.tar.gz nvim-d94b454eb61a0d0a99f9939560506c2db24f3315.tar.bz2 nvim-d94b454eb61a0d0a99f9939560506c2db24f3315.zip |
way too lazy to sort this out, adding kitchen sink
Diffstat (limited to 'lua/core/misc.lua')
-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 |