Example:
# ↓ 👈current caret here; location is "Line1, Column11"
E:/aaa/bbb /1.txt
E:/aaa/bbb /2.txt
E:/aaa/bbb /3.txt
Expect:
# ↓ 👈👈👈 expand to all rows
E:/aaa/bbb │/1.txt
E:/aaa/bbb │/2.txt
E:/aaa/bbb │/3.txt
... │
E:/aaa/bbb │/n.txt
So the goal is:
- Column Select the “11th column” of “all rows”
But there are a specific requirement: “Using only the keyboard and no arrow keys”
That is to say: hope there can be a key like ‘Ctrl+A’ to “Column Select current column of all rows”
- I often use this shortcut to column select all: {Ctrl_A + Ctrl_Shift_L}
- But this does not work for a specific column (or current column)
Does Sublime have this built-in feature?
if not:
- is there plugin to achieve this?
- or
- Is it possible that all carets jump to a specific column when Columns Selecting?