How to configure PyCharm for automatic code completion without ^space?(如何配置 PyCharm 以在没有 ^space 的情况下自动完成代码?)
问题描述
在 PyCharm 中输入时,我曾经自动获得代码完成建议,而无需按 Ctrl+Space.
When typing in PyCharm, I used to automatically get code-completion suggestions without having to hit Ctrl+Space.
我一定是不小心(不确定如何)更改了我的配置来禁用它,因为现在我必须按 Ctrl+Space 才能看到建议列表.
I must have accidentally (not sure how) changed my configuration to disable this, because now I have to hit Ctrl+Space to see the suggestion list.
之前,当尝试从随机导入 randrange 时,我会输入:
Before, when trying to import randrange from random, I would type:
from ra
并会自动获得一个选项列表,包括 ra
.
and would automatically get a list of options including ra
.
推荐答案
在 Settings ▶ Editor ▶ Code Completion 勾选 ☑自动弹出代码完成.
In Settings ▶ Editor ▶ Code Completion check ☑ Autopopup code completion.
这是来自 IDEA 的屏幕截图,我很确定这是整个事情的默认设置.PyCharm 应该差不多.
Here's a screenshot from IDEA with what I'm pretty sure are the defaults for that whole thing. PyCharm should be about the same.
这篇关于如何配置 PyCharm 以在没有 ^space 的情况下自动完成代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何配置 PyCharm 以在没有 ^space 的情况下自动完成
基础教程推荐
- 用于分类数据的跳跃记号标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 筛选NumPy数组 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01