You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Default <Tab> binding is never executed when lazy loading (e.g. with lazy.nvim) because it is triggered by VimEnter event, which, in case of lazy loading, will happen before plugin code is executed.
And when plugin code will be executed, VimEnter will be far gone.
Default
<Tab>
binding is never executed when lazy loading (e.g. with lazy.nvim) because it is triggered byVimEnter
event, which, in case of lazy loading, will happen before plugin code is executed.And when plugin code will be executed,
VimEnter
will be far gone.https://github.com/Exafunction/codeium.vim/blob/main/plugin/codeium.vim#L37
IMO, this needs some other way of triggering.
PS triggering manually later on:
fixes the issue and binds
<Tab>
properlyThe text was updated successfully, but these errors were encountered: