-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVSCommandTable.vsct
More file actions
112 lines (89 loc) · 3.68 KB
/
VSCommandTable.vsct
File metadata and controls
112 lines (89 loc) · 3.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?xml version="1.0" encoding="utf-8"?>
<CommandTable xmlns="http://schemas.microsoft.com/VisualStudio/2005-10-18/CommandTable" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<Extern href="stdidcmd.h"/>
<Extern href="vsshlids.h"/>
<Include href="KnownImageIds.vsct"/>
<Include href="VSGlobals.vsct"/>
<Commands package="guidlcLLMPackage">
<Groups>
<Group guid="lcLLMCommand" id="MainMenuGroup" />
</Groups>
<Menus>
<Menu guid="lcLLMCommand" id="MainLcMenu" type="Menu">
<Strings>
<ButtonText>lcLLM</ButtonText>
</Strings>
</Menu>
</Menus>
<Buttons>
<Button guid="lcLLMCommand" id="cmdRequestRefactor" type="Button">
<Strings>
<ButtonText>Refactor code</ButtonText>
</Strings>
</Button>
<Button guid="lcLLMCommand" id="cmdGenerateUnitTests" type="Button">
<Strings>
<ButtonText>Generate unit tests</ButtonText>
</Strings>
</Button>
<Button guid="lcLLMCommand" id="cmdDocumentCode" type="Button">
<Strings>
<ButtonText>Document code</ButtonText>
</Strings>
</Button>
<Button guid="lcLLMCommand" id="cmdCodeReview" type="Button">
<Strings>
<ButtonText>Code review</ButtonText>
</Strings>
</Button>
<Button guid="lcLLMCommand" id="cmdManualPrompt" type="Button">
<Strings>
<ButtonText>Manual Prompt</ButtonText>
</Strings>
</Button>
</Buttons>
</Commands>
<CommandPlacements>
<CommandPlacement guid="lcLLMCommand" id="MainLcMenu" priority="900">
<Parent guid="guidSHLMainMenu" id="IDG_VS_MM_TOOLSADDINS"/>
</CommandPlacement>
<CommandPlacement guid="lcLLMCommand" id="MainMenuGroup" priority="0x0100">
<Parent guid="lcLLMCommand" id="MainLcMenu"/>
</CommandPlacement>
<CommandPlacement guid="lcLLMCommand" id="cmdRequestRefactor" priority="0x0101">
<Parent guid="lcLLMCommand" id="MainMenuGroup"/>
</CommandPlacement>
<CommandPlacement guid="lcLLMCommand" id="cmdGenerateUnitTests" priority="0x0102">
<Parent guid="lcLLMCommand" id="MainMenuGroup"/>
</CommandPlacement>
<CommandPlacement guid="lcLLMCommand" id="cmdDocumentCode" priority="0x0103">
<Parent guid="lcLLMCommand" id="MainMenuGroup"/>
</CommandPlacement>
<CommandPlacement guid="lcLLMCommand" id="cmdCodeReview" priority="0x0104">
<Parent guid="lcLLMCommand" id="MainMenuGroup"/>
</CommandPlacement>
<CommandPlacement guid="lcLLMCommand" id="cmdManualPrompt" priority="0x0105">
<Parent guid="lcLLMCommand" id="MainMenuGroup"/>
</CommandPlacement>
</CommandPlacements>
<KeyBindings>
<KeyBinding guid="lcLLMCommand" id="cmdRequestRefactor" editor="guidTextEditor" key1="VK_F1" mod1="SHIFT"/>
<KeyBinding guid="lcLLMCommand" id="cmdGenerateUnitTests" editor="guidTextEditor" key1="VK_F2" mod1="SHIFT"/>
<KeyBinding guid="lcLLMCommand" id="cmdDocumentCode" editor="guidTextEditor" key1="VK_F3" mod1="SHIFT"/>
<KeyBinding guid="lcLLMCommand" id="cmdCodeReview" editor="guidTextEditor" key1="VK_F4" mod1="SHIFT"/>
</KeyBindings>
<Symbols>
<GuidSymbol name="guidSHLMainMenu" value="{D309F791-903F-11D0-9EFC-00A0C911004F}" />
<GuidSymbol name="guidlcLLMPackage" value="{18763b3e-4e07-42f3-993e-65bea52b8c44}" />
<GuidSymbol name="guidTextEditor" value="{8B382828-6202-11D1-8870-0000F87579D2}" />
<GuidSymbol name="lcLLMCommand" value="{714b6862-aad7-434e-8415-dd928555ba02}">
<IDSymbol name="MainLcMenu" value="0x1020"/>
<IDSymbol name="MainMenuGroup" value="0x1021"/>
<IDSymbol name="cmdRequestRefactor" value="250"/>
<IDSymbol name="cmdGenerateUnitTests" value="251"/>
<IDSymbol name="cmdDocumentCode" value="252"/>
<IDSymbol name="cmdCodeReview" value="253"/>
<IDSymbol name="cmdManualPrompt" value="254"/>
</GuidSymbol>
</Symbols>
</CommandTable>