vim-tabby doesn't load in Lazy.nvim
Opened this issue · 1 comments
realhackcraft commented
Truenya commented
hello. this is my config and it is working
{
"TabbyML/vim-tabby",
lazy = false,
dependencies = {
"neovim/nvim-lspconfig",
},
init = function()
-- vim.g.tabby_inline_completion_keybinding_accept = "<C-G>"
vim.cmd "exec 'imap <buffer><script><silent><nowait><expr> ' . '<C-G>' . ' tabby#inline_completion#service#Accept()'"
end,
},
- found workaround for your problem with
lazy = false
. - but it still conflicting and have some another problem
a)vim.g.tabby_inline_completion_keybinding_accept = "<C-G>"
: using this line - autocompletion does not work,:verbose imap<C-G>
shows empty
b)vim.cmd "exec 'imap <buffer><script><silent><nowait><expr> ' . '<C-G>' . ' tabby#inline_completion#service#Accept()'"
- found exact code in plugin files, added to init function and now all is fine.
@icycodes can u help with explaining why so?
vim-tabby 2.0.1