We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Shown here as timers and burdometer load they error, but the details of the error are lacking, only stating "C++ exception"
here is the init script used:
print('Initializing...') local command = require('core.command') local list = require('list') setmetatable(_G, { __index = function(t, k) local ok, data = pcall(require, k) if not ok then return nil end t[k] = data return t[k] end, }) local errors = list() local input = function(str) local out = '[init] ' .. str print(out) local ok, error = pcall(command.input, str) if not ok then errors:add(out .. ' | ' .. error) end end for bind, cmd in pairs(require('binds')) do -- input('/bind ' .. bind .. ' "' .. cmd .. '"') end for alias, cmd in pairs(require('aliases')) do input('/alias ' .. alias .. ' /' .. cmd) end for _, addon_name in ipairs(require('addons')) do input('/load ' .. addon_name) end for _, error in pairs(errors) do print('Error/' .. error) end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Shown here as timers and burdometer load they error, but the details of the error are lacking, only stating "C++ exception"
here is the init script used:
The text was updated successfully, but these errors were encountered: