Ranjith Hegde

Results 34 comments of Ranjith Hegde

> Ping - any updates on merging this? Been using this branch for a while now. @scztt would you please rebase on master? Otherwise it breaks compatibility with latest version...

@Jonathhhan Are you removing `GLES2/gl2.h`? How do you handle `GLES3/gl3ext.h`? I am trying to use some GLES3 features and failing because the browser complains the feautres I need are only...

what autocmd are you using to setup completion? do you have something like the following ` au BufEnter * lua require'completion'.on_attach() ` or do you have it per filetype? or...

@MrcJkb Do you mean the minimum amount of characters after which completion should be triggered? if so, have tried let `g:completion_trigger_keyword_length = 3`

Hmm, I doubt there is a way to do that yet. Maybe play around with `let g:completion_sorting = "length"`. I dont know if length sorts ascending or descending, but worth...

@ibraheemdev if I understand you correctly, you do not want completion on strings? if so then perhaps you could do something like this? ``` local chain_complete_list = { rust =...

I find this to be the best autocomplete plugin seeing as how it integrates with ins-complete and default lsp features, chain completion support etc... It is more "vim-like" than other...

@rafaelsq thanks. beat me to it. I have had it working on my local, just never got to filing the PR. Will test this

@noib3 I am not sure if you are already aware of this, but you can set trigger character for each source like this ``` let g:completion_chain_complete_list = { \ 'default'...