I have: ```viml let s:baleia = luaeval("require('baleia').setup({ strip_ansi_codes = false, log = 'DEBUG' })") command! BaleiaColorize call s:baleia.once(bufnr('%')) command! BaleiaLogs call s:baleia.logger.show() ``` But in read-only buffers (e.g. quickfix / fireplace's :Last command) colors aren't highlighted, just ignored: ``` ERROR vim.api.nvim_buf_set_text | { | params = { | buffer = 16, | end_col = 53, | end_row = 14, | lines = { "... removed ..." }, | start_col = 0, | start_row = 0 | }, | result = "Buffer is not 'modifiable'" | } ``` some highlighting seems to take place, but it doesn't colour the text it's supposed to.