We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d968fd commit fd07e3aCopy full SHA for fd07e3a
lua/devsecinspect/ui/panel.lua
@@ -107,6 +107,7 @@ end
107
108
function Debugging.on_resize()
109
if Debugging.panel ~= nil then
110
+ local config = require("devsecinspect.config").config
111
Debugging.panel:update_layout({
112
size = {
113
width = config.debugging.panel.size.width,
lua/devsecinspect/utils/init.lua
@@ -86,7 +86,7 @@ function M.match_globs(filepath, filters)
86
end
87
88
for _, filter in ipairs(filters) do
89
- if string.match(filepath, filter) then
+ if string.find(filepath, filter) then
90
return true
91
92
0 commit comments