How can I put cursor on every line in Sublime Text?

Solution 1:

Four steps:

  1. Select all the text: CTRL A
  2. Activate multi-cursors: CTRL (or CMD on Mac) SHIFT L
  3. Press the Home key to move all cursors to the front of the line
  4. Press the " quote key to insert the quote.

Using the Home End and CTRL + left | right arrow keys is handy when managing multiple cursors.

Solution 2:

On a mac, you can highlight the lines you wish to edit and use CMDShiftL, or ctrlShiftL on Windows.

Solution 3:

On Mac

  1. cmd+A (Select all)
  2. cmd+shift+L (Split selection into lines)
  3. shift+2 (Surround selection with quotes)
  4. esc (Escape)

Multiple cursors

Solution 4:

On Windows

CTRL+A (Select all Data)

CTRL+Shift+L (Cursor will appear on each line)

Shift+ (right or left key) (move the cursor left or right)

Press ESC to remove the focus.