2

我正在尝试从 Pycharm 切换到 Visual Studio 2013 (PTVS),但是我找不到如何更改自动完成弹出窗口的设置。例如,在 Pycharm 中,每当您开始编写内容时,它都会自动为您提供可能的关键字列表,如下面的屏幕截图所示。如果我开始写“co”,pycharm 让我选择“连续”,这是一个已经定义的布尔值。有没有办法在 Visual Studio 中更改这些设置?我现在已经浏览了 20 次设置菜单,我完全被卡住了。

screenshot of pycharm:
http://i61.tinypic.com/20960wn.png

screenshot of visual studio 2013:
http://i62.tinypic.com/2qtilg1.png
4

2 回答 2

1

我自己找到了答案——PTVS 不支持这个功能,但是有一个插件,可以在这里下载,据说可以解决这个问题:http: //visualstudiogallery.msdn.microsoft.com/644b4359-5eeb-4ba5 -9374-78a8507761f0

但是,经过进一步检查,它已损坏,并且效果不如 pycharm 的自动完成功能的一半。大多数情况下,它会弹出一条消息,说“没有建议”,在每一个字母之后都会收到该消息,这变得非常烦人。底线 - 它被打破了。

于 2014-02-19T17:08:57.613 回答
0

This is now supported with PTVS. Per the completions section found on the GitHub wiki.

Completions can be shown at any time by pressing Ctrl+J or Ctrl+Space, or may be triggered automatically by certain commands (such as import), operators (such as a period/full stop), or by typing at any place where completions are likely to be helpful.

于 2016-06-16T18:13:19.693 回答