我想查看 IPython 中可能的建议的完整列表,而不是图像中的。
你需要什么命令来做到这一点?
如果按两次 Tab,则可以使用箭头键在该列表中导航。
您还可以通过更改配置文件目录中文件中的此设置来在三种不同样式的完成器之间切换ipython_qtconsole_config.py
(执行ipython locate profile
以查看其位置):
# The type of completer to use. Valid values are:
#
# 'plain' : Show the available completion as a text list
# Below the editing area.
# 'droplist': Show the completion in a drop down list navigable
# by the arrow keys, and from which you can select
# completion by pressing Return.
# 'ncurses' : Show the completion as a text list which is navigable by
# `tab` and arrow keys.
c.IPythonWidget.gui_completion = 'ncurses'