Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Unable to make it work #14

@Shatur

Description

@Shatur

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions