Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua/dapui/client/lib.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ return function(client)
return util.open_buf(buf, line, column)
end

if not source.path or not vim.uv.fs_stat(source.path) then
if not source.path or (not util.is_uri(source.path) and not vim.uv.fs_stat(source.path)) then
util.notify("No source available for frame", vim.log.levels.WARN)
return
end
Expand Down