Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Turn off autocomplete in Sublime REPL in Sublime Text 2

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

like image 482
Dirk Calloway Avatar asked Jun 05 '14 15:06

Dirk Calloway


People also ask

How do I turn on autofill in Sublime Text?

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.

How do I get sublime REPL?

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 ).

How to turn off auto-complete in Sublime Text Editor?

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.

How to disable ternjs plugin in Sublime Text Editor?

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,

How do I turn off auto complete in CSS?

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.

How to fix “auto_complete” not working in WordPress?

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


1 Answers

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
    },
like image 60
AGS Avatar answered Sep 20 '22 22:09

AGS