alienhard / SublimeAllAutocomplete

Extend Sublime autocompletion to find matches in all open files of the current window
917 stars 110 forks source link

don't mess with system's autocomplete #51

Closed craigcosmo closed 7 years ago

craigcosmo commented 7 years ago

Hi,

I have my sublime customized autocomplete and sublime default autocomplete. They work great. Now I have this tabs related autocomplete, great too.

One problem, allAutoComplete will suggest what I already had by default, in a different way.

I normally have completion like console.log($0), what I do is I press con + tab to get that.

Now when I do that, I get console.log or console. You can see there is missing ()

I understand this plugin will suggest keyword using indexing from open tabs. Now if you could teach the plugin to ignore the autocompletes already in in the system, don't try to suggest that. It will awesome.

canoeberry commented 7 years ago

Having just implemented my own version of all auto-complete (more on that in my own issue) I am not sure this is possible. Auto complete in sublime works by allowing everyone to get in on the act and produce their own set of completions. There is no mechanism that I am aware of to look at what has already been generated by other plugins or the system itself.

alienhard commented 7 years ago

@canoeberry thanks, that's also my understanding