-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No notification handler registered #107
Comments
I just found out this happens when doing any |
This is because when you use a |
Okay, I'll try it today. |
Hi, So I'm encountering the same issue using use {
'rcarriga/vim-ultest',
requires = { 'vim-test' },
run = ':UpdateRemotePlugins',
config = function()
as.augroup('UltestTests', {
{
event = { 'BufWritePost' },
pattern = { '*_test.*', '*_spec.*' },
command = 'UltestNearest',
},
})
as.nmap(']t', '<Plug>(ultest-next-fail)', {
label = 'ultest: next failure',
buffer = 0,
})
as.nmap('[t', '<Plug>(ultest-prev-fail)', {
label = 'ultest: previous failure',
buffer = 0,
})
end,
} |
Can you verify that vim-ultest is in the |
@rcarriga so I thought it might be that, but it is definitely in the I think I just managed to fix it by setting |
Ah yes that'd be it, vim-ultest assumes vim-test is available on load as it needs to call it on startup |
Describe the bug
Here's my plugin config (using a Packer.nvim macro):
Which compiles to:
Using this configuration generates this error every time I open a test file:
and after which if I run
Ultest
commandDoesn't generate any log file.
To Reproduce
Expected behavior
No errors, and the setting works as expected.
The text was updated successfully, but these errors were encountered: