747ef49b98
* enhance: add statusline test module * update old tests to use statusline test setup * show diff in statusline:expect * Revert "show diff in statusline:expect" This reverts commit cea25185fde1b99110759f198ef1fc724626306c. * autoformat * fix testcov reports * update statusline test module * revert lualine_spec * update lualine_spec using statusline module * apply formater * add tabline support to statusline test module * re enable tabline tests * fix inconsistency in buffers mode test due to bufnr changing Should we be showing bufnr/buffer_position in buffers component * autoformat * minor tweeks to stl test module * use nvim_eval_statusline in nvim-0.6+ * fix tabs component on nvim-0.5 * enable disabled branch test
21 lines
434 B
Lua
21 lines
434 B
Lua
return {
|
|
include = {
|
|
"lua/lualine$",
|
|
"lua/lualine_require$",
|
|
"lua/lualine%/.+$",
|
|
},
|
|
exclude = {
|
|
"lua/lualine/themes%/.+$",
|
|
"lua/lualine/extensions%/.+$",
|
|
},
|
|
modules = {
|
|
["lualine"] = "lua/lualine.lua",
|
|
["lualine_require"] = "lua/lualine_require.lua",
|
|
["lualine.*"] = "lua/",
|
|
},
|
|
statsfile = 'luacov.stats',
|
|
reportfile = 'luacov.report',
|
|
-- includeuntestedfiles = true,
|
|
}
|
|
-- vim:ft=lua
|