Turn off autocomplete in Sublime REPL in Sublime Text 2
sublimerepl, sublimetext, sublimetext2, sublimetext3
Solution
Look for, and edit, the following in the SublimeRepl `.sublime-settings` file. Preferably, add the `"auto_complete": false` to your SublimeRepl user settings.
"repl_view_settings": {
"translate_tabs_to_spaces": false,
"auto_indent": true,
"smart_indent": true,
"spell_check": false,
"indent_subsequent_lines": false,
"detect_indentation": false,
"auto_complete": true,
"line_numbers": true,
"gutter": true
},
Problem
When I type in the Sublime Repl console (Python) and hit return to run the command I am getting super annoying autocomplete taking over and changing the command. How do I turn this off in the SublimeRepl console? Thanks