In Sublime Text, is it possible to select the cells of a specific column in an HTML table? Assume there's no common attribute to hook onto (such as class or position at the end of a row) so multi-select isn't helpful in this context.
<table>
<tr>
<td>col 1.1</td>
<td>col 2.1 - I'd like to select this</td>
<td>col 3.1</td>
</tr>
<tr>
<td>col 1.2</td>
<td>col 2.2 - ...and this</td>
<td>col 3.3</td>
</tr>
Do the following
<tr>
ALT + F3
down arrow
as many times as required (so that each cursor is on the right column)right
so it is at the end of<td>
SHIFT + End
. MaintainSHIFT
pressed and pressleft arrow
5 times