CodeRush Ultimate 24.1
Released: Jun 13, 2024
Aggiornamenti in 24.1
Funzionalità
Voice Support
- After you specify Azure Speech Recognition and OpenAI API keys in Voice Setup, you can enable voice features in Visual Studio 2022 and up.
- Voice Commands
- Hold left Ctrl key and speak to trigger voice commands. Examples of things you can say and what they do:
- "open foo" - finds and opens Foo.cs file in editor.
- "class bar" - navigates to classes named "bar".
- "bookmark storage" - creates a new bookmark named "storage".
- "goto storage" - jumps to a bookmark named "storage".
- "show me solution explorer" - shows the Solution Explorer.
- "line one hundred" - jumps to line 100 in current file.
- Voice commands can use inferred intent, so you don't have to be precise when invoking them. Also, if you're working in large solutions (e.g., with 10,000+ files) the Voice Command for opening files is a huge productivity boost.
- Voice to Code
- Hold right Ctrl and speak to dictate strings, comments, and expressions, and to name identifiers. Examples of what you can create with voice:
- A new PascalCase or camelCase identifier name when Visual Studio's Rename refactoring is active.
- Dictated strings (including expressions in interpolated strings).
- Dictated comments (including indentifier references in comments and paramref and seealso tags in XML Doc comments).
- Expressions and statements:
- Simple expressions, like method and property calls, numbers and binary expressions.
- More advanced expressions, like await expressions, null, true and false literals, discards, method calls with out and ref arguments, and assignment statements.
- Voice for Copilot - Hold left Ctrl and speak "Hey Copilot!" followed by your query to interact with the GitHub Copilot Chat tool window using your voice. You can use words like "this method" or "this class" to automatically include relevant code in your query. If the Copilot tool window is already active and its chat prompt has focus, you can hold the right Ctrl key down to directly dictate your query into the prompt control (there's no need to start your prompt with "Hey Copilot").
Navigation
- Added new quick navigation providers:
- MEF Imports - find where the active type is imported.
- MEF Exports - find where the active type is exported.
- Type - go directly to the type of active variable or property.