当我输入Sublime Repl控制台(Python)并点击返回以运行命令时,我发现超级烦人的自动完成接管并更改命令。
如何在SublimeRepl控制台中将其关闭?
由于
答案 0 :(得分:5)
在SublimeRepl .sublime-settings
文件中查找并编辑以下内容。最好将"auto_complete": false
添加到您的SublimeRepl用户设置。
"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
},
答案 1 :(得分:0)
我不知道这是否是您问题的确切答案,但它可能有所帮助 - 并且它出现在我的搜索结果中,用于禁用Sublime Text中的自动完成功能。除了“auto_complete”之外,您还可以更改更多选项;例如,我发现了这个:
// Automatically close HTML and XML tags when </ is entered.
"auto_close_tags": true,
,检查已安装的软件包以查找将自动完成的任何内容。