-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
I output program into quickfix. Here is how it looks:
quickfix.txt
And here is my setup:
local config_group = vim.api.nvim_create_augroup('Config', {})
vim.api.nvim_create_autocmd({ 'BufWinEnter' }, {
pattern = 'quickfix',
group = config_group,
callback = function()
print(vim.api.nvim_get_current_buf())
local baleia = require('baleia').setup({})
baleia.automatically(vim.api.nvim_get_current_buf())
end,
})When I open quickfix I i prints buffer index (because I put print to check if I created autocmd correctly), but there is not highlighting.
Also for some reason I don't heave the mentioned :BaleiaColorize from the README.md.
Metadata
Metadata
Assignees
Labels
No labels