-
Notifications
You must be signed in to change notification settings - Fork 5
/
GalleryPage.html
217 lines (217 loc) · 7.05 KB
/
GalleryPage.html
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<h1><span style="color: #ff9900;">Sublime</span> <span style="color: #000000;">VS</span></h1>
<p><strong>Visual Studio Extension that provides some capabilities similar to those in Sublime Text.</strong></p>
<p>The SublimeVS extension bundles and installs several other extensions that provide some of the features found in Sublime Text.<br /> It also includes a keyboard shortcut mapping scheme, which, if applied, will import most of the common Sublime Text shortcuts.<br /> Together with the imported features, and the applied shortcuts, users familiar with the Sublime Text editing experience might feel more at home using Visual Studio.</p>
<h3><span style="color: #5881c5;">Bundled Extensions</span></h3>
<div>
<table border="1" cellspacing="5" cellpadding="0">
<tbody>
<tr>
<td>
<p>
<a href="https://marketplace.visualstudio.com/items?itemName=MarcoAlamia-CodingLabs.MixEdit">MixEdit</a> by Marco Alamia
</p>
</td>
<td>
<p>(Trialware) Provides Multi-cursor editing features</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://marketplace.visualstudio.com/items?itemName=MadsKristensen.ZenCoding">Zen Coding</a> by Mads Kristensen
</p>
</td>
<td>
<p>Provides Emmet Snipets / HTML template coding</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://marketplace.visualstudio.com/items?itemName=JaredParMSFT.EasyMotion">Easy Motion</a> by Jared Parsons
</p>
</td>
<td>
<p>Provides 3-key navigation anywhere in the viewable page</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://marketplace.visualstudio.com/items?itemName=CodeMuncher1.VSTricks">VSTricks</a> by David Jackson
</p>
</td>
<td>
<p>Provides CamelCase navigation/selection/deletion,</p>
<p>plus Copy/Paste features including Duplicate Line/Selection</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://marketplace.visualstudio.com/items?itemName=DanielGriffen.WhackWhackTerminal">Whack Whack Terminal</a> by Daniel Griffen
</p>
</td>
<td>
<p>Provides a hosted terminal emulator for executing fully interactive commands in a range of shells, including: PowerShell, Cmd, Git</p>
</td>
</tr>
<tr>
<td>
<p>VS Shortcuts Manager by Justin Clareburt</p>
</td>
<td>
<p>Provides menu items to easily backup and restore keyboard shortcuts</p>
</td>
</tr>
</tbody>
</table>
</div>
<h2><span style="color: #5881c5;">Main Features</span></h2>
<h3>Mini-Map</h3>
<p>Shows a colorful, compressed view of the current file in the scrollbar. Click anywhere on the bar to go directly to that point in the file.<br>
Sets Map-Mode Scrollbar (Wide) available in Tools->Options;Text Editor->(Langauge)->Scroll Bars</p>
<p> </p>
<h3>Ctrl+P = Go To File</h3>
<p>Find any file by filename or path. Search with CamelCase letters to find files by their significant parts.<br>
Calls Edit.GoToFile, which opens the GoTo search box with file (path) filter applied ("f ").</p>
<p> </p>
<h3>Ctrl+Shift+P = Command Palette</h3>
<p>Search for and activate any Visual Studio command by its command name.<br>
Puts focus in Quick Launch. Type "@cmd " to activate the Command Palette.</p>
<h2><span style="color: #5881c5;">Multi-Cursor Features</span></h2>
<h3>Ctrl+D = Select Word / Select Next Match</h3>
<p>Add next match to selection with additional caret. Selects word at caret if no selection.<br>
Uses MixEdit.SelectWord</p>
<p> </p>
<h3><span>Ctrl+Shift+L = Split Multi-line Selection</span></h3>
<p>Splits a single selection that spans multiple lines into multiple selections - one per line - each with their own caret.<br>
Uses MixEdit.SplitSelectionAcrossLines</p>
<p> </p>
<h3><span>Alt+Click = Add Extra Caret</span></h3>
<p>Hold Alt and click anywhere in the file to add additional carets and perform editing in multiple places at once.<br>
Uses Alt+Click command handler in Mix Edit.</p>
<h2><span style="color: #5881c5;">Navigation Features</span></h2>
<h3>Alt+Key = Sub-word Navigation/Selection/Deletion</h3>
<p>When holding the Alt key, caret stops at the next capital letter in CamelCase words.</p>
<ul type="disc">
<li><span>Navigate sub-words with Alt+Right/Left</span> </li>
<li><span>Select sub-words with Shift+Alt+Right/Left</span> </li>
<li><span>Delete sub-words with Alt+Backspace and Alt+Delete</span> </li>
</ul>
<p>Uses Sub-word navigation commands available in VSTricks (ie. Edit.SubWordNext, Edit.SubWordDeleteToStart)<br>
Note: Use Ctrl+Right/Left to navigate a whole word at a time.</p>
<h2><span style="color: #5881c5;">Sublime Keyboard Shortcuts</span></h2>
<p>You can apply the Sublime keyboard shortcuts from "Tools->Apply Sublime Settings…".</p>
<p><strong>Beware:</strong> Some mappings override popular Visual Studio shortcuts. (ie. F11 = Full screen takes over default mapping for Debug.StepInto)</br>
Go to Tools->Options;Environment->Keyboard to update keybindings for overridden shortcuts.
</p>
<p>See <a href="https://github.com/justcla/SublimeVS/blob/master/SublimeVS/Shortcuts/SublimeShortcuts.vssettings"> keyboard shortcut reference</a> for a complete list of mapped shortcuts.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<p>Ctrl+P</p>
</td>
<td>
<p>Go To File/Path ("f " filter)</p>
</td>
</tr>
<tr>
<td>
<p>Ctrl+R</p>
</td>
<td>
<p>Go To Symbol ("@" filter)</p>
</td>
</tr>
<tr>
<td>
<p>Ctrl+D</p>
</td>
<td>
<p>Multiple selection - Select next matching occurrence</p>
</td>
</tr>
<tr>
<td>
<p>Ctrl+Shift+D</p>
</td>
<td>
<p>Duplicate code</p>
</td>
</tr>
<tr>
<td>
<p>Alt+-</p>
</td>
<td>
<p>Navigate Backward</p>
</td>
</tr>
<tr>
<td>
<p>Shift+Alt+-</p>
</td>
<td>
<p>Navigate Forward</p>
</td>
</tr>
<tr>
<td>
<p>Ctrl+W</p>
</td>
<td>
<p>Close File</p>
</td>
</tr>
<tr>
<td>
<p>Ctrl+Shift+K</p>
</td>
<td>
<p>Delete Line</p>
</td>
</tr>
<tr>
<td>
<p>Ctrl+Shift+L</p>
</td>
<td>
<p>Split multi-line selection</p>
</td>
</tr>
<tr>
<td>
<p>Ctrl+Shift+Up/Down</p>
</td>
<td>
<p>Move lines Up/Down</p>
</td>
</tr>
<tr>
<td>
<p>Ctrl+]</p>
</td>
<td>
<p>Increase Line Indent</p>
</td>
</tr>
<tr>
<td>
<p>Ctrl+[</p>
</td>
<td>
<p>Decrease Line Indent</p>
</td>
</tr>
<tr>
<td>
<p>F11</p>
</td>
<td>
<p>Full screen</p>
</td>
</tr>
</tbody>
</table>