-1

Recently I started using sublime 3 text editor and the issue I encountered is the REPl terminal, I mean why is there syntax highlighting and autocompletion in a terminal during execution, it makes the terminal annoying, is there any fix?

Oreo
  • 104
  • 5

1 Answers1

0

Go to .sublime-settings file, add "auto_complete": false in 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": false,
        "line_numbers": true,
        "gutter": true
    },

If this doesn't work, go to SublimeREPL/config/Python/Main.sublime-menu, search for autocomplete_server and set it to false.

Shradha
  • 2,232
  • 1
  • 14
  • 26