alienhard / SublimeAllAutocomplete

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

Enabling both autocomplete and sublimetext completion box. #25

Closed GorgeRonde closed 10 years ago

GorgeRonde commented 11 years ago

Adding that bit from the default keymap file

    { "keys": ["tab"], "command": "commit_completion", "context":
        [
            { "key": "auto_complete_visible" },
            { "key": "setting.auto_complete_commit_on_tab" }
        ]
    }

to the end of Tabs.sublime-keymap allows us to use tab to trigger autocomplete as well as to apply a completion when sublimetext native completion popup appears. I came up with this because the popup still appeared althgough I had no way to pick a completion (I'm using auto_complete_commit_on_tab)

alienhard commented 10 years ago

Thanks @GorgeRonde. Could you explain in a bit more detail what the problem is and how to reproduce it? Is this something specific to AllAutocomplete or a general solution to using autocomplete?

If the fix is to change the keymap config, it's not something we can do in the package source. Should we instead add this to the README?

GorgeRonde commented 10 years ago

Ooops. Sorry for having wasted your time, but this issue wasn't related to your plugin but to SublimeTextAlternativeAutocompletion. I have "forwarded" the issue there.