Set "alt + mouse click" shortcut to only keyboard without mouse usage.

Imagine the next code (Open API):

App:
type: object
properties:
id: # 1
type: integer
name: # 2
type: string

Now we need to select every second line (line commented with a 1 and 2) without selecting the lines that starts with `type` word.
My question is: how we can do it without mouse usage?

Generally we need to simulate "alt + mouse click" shortcut on the target lines.
But currently Pycharm not allows to set this shortcut without mouse click.

Another way - is select all the lines and specify 1 or 2 or 3 that means choose every N line from the selected text.
But I don't know a such plugin :(

0

请先登录再写评论。