코드 수정을 하다보면 여러 부분에 동시에 같은 문자열을 입력하고 싶을 때가 있다. 커서를 옮겨가며 붙여넣기를 할 수도 있지만 Visual Studio 는 다중 커서(Multi Caret) 를 지원한다.

에디터에서 Ctrl + Alt + 클릭을 하면 해당 위치에 커서가 추가된다.

여러 곳을 선택한 상태에서 문자열을 입력하면 같은 문자열이 입력된다. copy constructor 나 assignment operator 만들 때 같은 변수명을 입력해야하는 경우가 있는데 'this->' 같은 문자열 입력할 때 편하다.

참고 : Improving your productivity in the Visual Studio Editor

 

Improving your productivity in the Visual Studio Editor

Over the last few updates to Visual Studio 2017, we’ve been hard at work adding new features to boost your productivity while you’re writing code. Many of these are the result of your direct feedback coming from the UserVoice requests, Developer Commun

devblogs.microsoft.com

 

728x90

+ Recent posts