Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sublime Text suggest numbers: how to disable it?

These days I'm programming in Python with sublime text and I'm pretty annoyed because I have installed the "SublimeCodeIntel" and "auto-complete", when I write a number, it suggest me some number that I have in the opened files.

there's any way to disable it? I mean, how can I configure the suggestion to NOT appear the ones that start with a number?

Hope someone could help me out! :)

Edit: forget auto-complete. I mean that when I write, for example, "1", sublime suggest me "100" as when I write "p" it suggest me "print". So, Sublime is suggesting me numbers, any way to disable it?

like image 324
Meru Avatar asked Oct 20 '22 16:10

Meru


1 Answers

You cannot disable auto complete especially for numericals. Auto complete can be disabled with the auto_complete setting. To disable it, add this line to Preferences/File Settings - User:

"auto_complete": false

If auto-complete is disabled then, the pop-up can be seen by pressing Ctrl+Space, pressing again will select the next option.

like image 135
Paritosh Avatar answered Nov 02 '22 13:11

Paritosh