Open TSFoster opened 8 years ago
I've found [^ \t]+ works better than .+ for g:deoplete#keyword_patterns.gitcommit, as it matches every word, not just the beginning of the line.
[^ \t]+
.+
g:deoplete#keyword_patterns.gitcommit
I've found
[^ \t]+
works better than.+
forg:deoplete#keyword_patterns.gitcommit
, as it matches every word, not just the beginning of the line.