Sublime Forum

SublimeText4 autocomplete suggests everything but not what I need [solved?]

#1

f[‘readable’] = Tru [return] <=?? ( once it shows True, other times it doesn’t )
f[‘readable’] = Tru [True, return]
f[‘readable’] = True [user_signature, AttributeError] ?!

I typed True and hit enter, I got:
f[‘readable’] = user_signature :grimacing:

True == ture ? True == tr+u+E ? - what is this? How do I turn it off?

Python, Syntax Specyfic:
“tab_completion”: false,
“auto_complete_commit_on_tab”: false,

Open ~10 files (.py , .html)
ST 4113

terrible_autocomplete2

–edit–
It only helped:
“auto_complete_preserve_order”: “strict”,
Now it works fine for me

-------- (all settings) -------
“auto_complete”: true,
“tab_completion”: false,
“auto_complete_commit_on_tab”: false,
“auto_complete_with_fields”: false,
“auto_complete_delay”: 50,
“auto_complete_include_snippets”: false,
“auto_complete_use_index”: true,
“auto_complete_use_history”: false,
“auto_complete_preserve_order”: “strict”,
“auto_complete_include_snippets”: false,
“auto_complete_include_snippets_when_typing”: false,
“auto_complete_when_likely”: false,

0 Likes