> > >
.api.nvim_echo({{'hello', 'healthError'}, {'world'}}, true, {}) vim
local cwd = vim.fn.expand('%:p:h')
.api.nvim_buf_get_name(0) vim
local line = vim.api.nvim_buf_get_lines(bufnr, 1, -1, false)
-- 0 is current window
.fn.winwidth(0)
vim.fn.winheight(0) vim
local go = setmetatable({}, {
__index = function(t, k)
local ok, val = pcall(require, string.format('go.%s', k))
if ok then
rawset(t, k, val)
end
return val
end
})