Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add commands shortcuts #23

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CodeiumVS/VSCommandTable.vsct
Original file line number Diff line number Diff line change
Expand Up @@ -175,4 +175,13 @@
<GuidSymbol name="ChatToolWindow" value="{1a46fd64-28d5-434c-8eb3-17a02d419b53}"/>

</Symbols>

<KeyBindings>
<!-- CMDSETID_StandardCommandSet97 for global shortcuts, GUID_TextEditorFactory for editor only shortcuts
How to find them: https://stackoverflow.com/a/64912040/13253010 -->
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

God Visual Studio is just the best IDE

<KeyBinding guid="CodeiumVS" id="OpenChatWindow" editor="CMDSETID_StandardCommandSet97" mod1="Alt" mod2="Alt" key1="C" key2="C" />
<KeyBinding guid="CodeiumVS" id="ExplainCodeBlock" editor="GUID_TextEditorFactory" mod1="Alt" mod2="Alt" key1="C" key2="E" />
<KeyBinding guid="CodeiumVS" id="RefactorCodeBlock" editor="GUID_TextEditorFactory" mod1="Alt" mod2="Alt" key1="C" key2="R" />
</KeyBindings>

</CommandTable>
Loading