I haven't used the plugin in a while, but it seems that for some reason it stopped working for me, I don't get any completions anymore. Completions for commits ( : ) work, but not for mentions or issues ( # and @ ).
Given that at least on the surface level it looks like my previous problem ( #47 ), I already checked and confirmed the following:
pwd is set correctly
:CmpStatus correctly lists git as a ready source
- filetype is correctly set to
gitcommit
:lua print(require("cmp_git.utils").is_git_repo()) reports true
- [I enabled cmp_git for the lua filetype](I enabled cmp_git for the lua filetype), and the same thing happens here.
- I am still using the minimal config as before:
cmp.setup.filetype("gitcommit", {
sources = cmp.config.sources {
{name = "git"},
},
})
require("cmp_git").setup()
I haven't used the plugin in a while, but it seems that for some reason it stopped working for me, I don't get any completions anymore. Completions for commits (
:) work, but not for mentions or issues (#and@).Given that at least on the surface level it looks like my previous problem ( #47 ), I already checked and confirmed the following:
pwdis set correctly:CmpStatuscorrectly listsgitas a ready sourcegitcommit:lua print(require("cmp_git.utils").is_git_repo())reportstrue