문제

I'm trying to edit in column selection mode on Rubymine but I have some lines I wish to skip. In the code below I would like to edit both "to_change" at the same time. I wish to duplicate the cursor and every edit action will occur in them both. In this code if I will select the start of both "to_change" and press '#', the code here:

def a
  to_change
end

def b
  to_change
end  

will turn to

def a
  #to_change
end

def b
  #to_change
end  
도움이 되었습니까?

해결책

Multiple selection/editing is not supported yet, you can follow this feature request.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top