How to select all lines below a current line in PyCharm

Viewed 304

Is there a way to select all lines below a current selected line in PyCharm (similarly to how in Mac you can use Cmd + Shift + down to select the lines)?
The Cmd + Shift + right / left work just fine, but the "up" and "down" don't work.

I'm using a Mac.

2 Answers

Hit End to go the end of the current line and then Ctrl + shift + end will select all lines below your cursor.

That's the key binding for this functionality: enter image description here

You can find it in Settings -> Keymap -> Editor actions.

Not that I know of... On windows, ctrl + shift + pg up / pg dn might help

Related