20 lines
322 B
Lua
20 lines
322 B
Lua
|
|
local M = {}
|
||
|
|
|
||
|
|
M.debugging_signs = {
|
||
|
|
Stopped = { " ", "DiagnosticWarn", "DapStoppedLine" },
|
||
|
|
Breakpoint = " ",
|
||
|
|
BreakpointCondition = " ",
|
||
|
|
BreakpointRejected = { " ", "DiagnosticError" },
|
||
|
|
LogPoint = ".>",
|
||
|
|
}
|
||
|
|
|
||
|
|
M.diagnostic_signs = {
|
||
|
|
Error = " ",
|
||
|
|
Warn = " ",
|
||
|
|
Hint = "",
|
||
|
|
Info = "",
|
||
|
|
}
|
||
|
|
|
||
|
|
return M
|
||
|
|
|