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
By default, Sublime Text will automatically show the completions popup when a user is editing source code or markup, but not within prose in comments, strings or markups. Pressing the Esc key will hide the completions popup. To manually show the completions popup, press Ctrl+Space.
Getting startedCreate or open your file with code. Menu / Tools / Command Palette (OS X: ⇧⌘P ) then type “SublimeREPL” and select the approperiate language. Menu / View / Layout / Rows: 2 (OS X: ⌥⇧⌘2 ). Menu / View / Move File to Group / Group 2 ( ⌃⇧2 ).
1: In Preference --> User, Check if TernJS plugin is Installed. If Yes, Unistall it from your editor (i.e. Sublime Text Editor). 2: In Preferences --> User, check for the auto_complete and change it to false This should be the option.
There are two options: 1: In Preference --> User, Check if TernJS pluginis Installed. If Yes, Unistall it from your editor (i.e. Sublime Text Editor). 2: In Preferences --> User, check for the auto_completeand change it to false "auto_complete": false,
Go to Preferences > Settings. The “auto_complete”: true parameter needs to be visible in your settings. If you have a syntax-specific settings file with the auto_complete value set to false, this may explain why the feature is not working. Do check your custom CSS syntax file if you have one.
Go to Preferences > Settings. The “auto_complete”: true parameter needs to be visible in your settings. If you have a syntax-specific settings file with the auto_complete value set to false, this may explain why the feature is not working. Do check your custom CSS syntax file if you have one. 2. Change the file type to HTML
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
},
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With