0

我想查看 IPython 中可能的建议的完整列表,而不是图像中的。

你需要什么命令来做到这一点?

Ipython 选项卡

4

1 回答 1

1

如果按两次 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'
于 2013-11-07T17:20:37.707 回答