Zinggi / UnrealScriptIDE

Auto-completion, Syntax Highlighting, Go to Declaration, Build and Run and more..
Other
90 stars 19 forks source link

How to disable auto-completion with 'tab'? #27

Closed arslancharyev31 closed 6 years ago

arslancharyev31 commented 6 years ago

Good day. I'm having issues with tab key, which frequently autocompletes a statement, instead of inserting a \t character. I've tried disabling it in UnrealScriptIDE.sublime-settings via "auto_complete_commit_on_tab": false and "auto_complete_with_fields": false options, but without any luck. I've also tried changing user keymap to

[
    {
        "keys": ["tab"],
        "command": "", 
        ...
    }
]

But that didn't help as well. Any suggestions?

Zinggi commented 6 years ago

Try pressing shift+tab, this should insert a literal tab.

This isn't an issue with this plugin, that's just how sublimes autocomplete system works. Hope that helps 😃

arslancharyev31 commented 6 years ago

Indeed it does. Thx a lot.

Zinggi commented 6 years ago

Glad I could help!