Coderush Intellassist 与 Intellisense

发布于 2024-12-06 15:56:08 字数 210 浏览 2 评论 0原文

我正在使用 coderush 和 vs 2008。在 VB.net 中进行编码。

我没有看到任何 Intellassist 的证据,我看到的只是通常的 VS intellisense。

这是正常的吗?首选?大多数人会保留默认设置还是大多数/某些人会关闭 vs 的智能感知?

intellassist 是否能以某种方式增强智力?

谢谢 乔纳森

I'm using coderush with vs 2008. coding in VB.net.

I don't see any evidence of Intellassist, all i see is the usual VS intellisense.

Is this normal? Preferred? Do most people leave the defaults or do most/some turn off vs's intellisense?

Does intellassist somehow agument intellisence?

thanks
jonathan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

权谋诡计 2024-12-13 15:56:08

我将 CodeRush Intellassist 视为 Visual Studio Intellisense 的扩展,而不是其替代品或其他任何东西。 Intellassist 使用范围内标识符完成编辑器插入符位置处的文本,并且可能包括其他建议,例如物理文件路径完成或枚举元素完成(这对于 Visual Basic 来说不是实际的)。

要使用 Intellassist,只需像平常一样编写代码即可。当 Intellassist 检测到一个或多个建议与您目前输入的代码相匹配时,最佳建议将显示在编辑器插入符的右侧。

Intellassist 激活后,您有多个选项:

  • 按 Enter 接受突出显示的建议。如果您关闭了区分大小写的选项,Intellassist 将确保整个建议的大小写正确以匹配声明。

  • 按 Shift+Enter 接受部分建议。 Shift+Enter 接受从插入符号到建议中下一个大写字母之前的字符。例如,如果“AllowMultipleSelections”是建议,并且已输入“al”,则连续按 Shift+Enter 将导致选择移动,如下所示:

  • 当您需要创建新的选择时,Shift+Enter 很有用。与现有建议的一部分相似的变量名称,或者当您想要快速访问不同但名称相似的建议时(仅在文本的后面部分有所不同)。您可以按 Shift+Enter 将选择项向右移动,然后开始输入以获取其他建议。

  • 如果建议多个条目,您可以按 Tab 和 Shift+Tab 在建议中前后循环。

  • 按删除键取消建议。

  • 暂时不执行任何操作,Intellassist 将隐藏该建议。

  • 如果您输入的文本是要展开的代码模板,只需按空格键或;正常展开模板。

  • 继续输入(缩小建议列表或最终忽略所有建议)。

Intellassist 具有高度可配置性。您可以指定是否应提出不区分大小写的建议,还可以更改许多其他选项。

I see CodeRush Intellassist as an extension of Visual Studio Intellisense and not its replacement or anything else. Intellassist completes the text at the editor caret position with an in-scope identifier and may include other suggestions, such as physical file path completion or enumeration elements completion (which is not actual for Visual Basic).

To use Intellassist, just write code as you normally would. When Intellassist senses one or more suggestions matching the code you've entered so far, the best suggestion will be displayed to the right of the editor caret.

Once Intellassist is active, you have several options:

  • Press Enter to accept the highlighted suggestion. If you have the case-sensitive option turned off, Intellassist will ensure the entire suggestion is properly cased to match the declaration.

  • Press Shift+Enter to accept a portion of the suggestion. Shift+Enter accepts from the caret to the character preceding the next uppercase letter in the suggestion. For example, if "AllowMultipleSelections" was the suggestion, and "al" had been typed in, pressing Shift+Enter successive times would cause the selection to shift as follows:

  • Shift+Enter is useful when you need to create a new variable name that is similar to a portion of an existing suggestion, or when you want to quickly access a different but similarly-named suggestion (differing only in the latter portions of the text). You can press Shift+Enter to move the selection right, and then start typing to get other suggestions.

  • If more than one entry is suggested you can cycle forward and backward through the suggestions by pressing the Tab and Shift+Tab.

  • Press the Delete key to cancel the suggestion.

  • Do nothing for a few moments and Intellassist will hide the suggestion.

  • If the text you've entered is a code template that you want to expand, just press Space or ; to expand the template normally.

  • Continue typing (narrowing down the suggestion list or ultimately ignoring all suggestions).

Intellassist is highly configurable. You can specify whether case-insensitive suggestions should be made, and also change a host of other options.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文