Move
- Go to : Ctrl + T
- Go to line : Ctrl + G
- Peek/Go to Definision : Alt + F12
- Go To Definision : F12
- Go To Declaration : Ctrl + F12
- Find : Ctrl + F
- Find in Files : Ctrl + Shift + F
Navigating
- Quick Launch : Ctrl + Q
- Scroll Bar Map Mode : Ctrl + Q, searching 'map'
- Class View : Ctrl + Shift + C
- Open Document : Ctrl + Shift + G
- Toggle Header/Code File : Ctrl + K, Ctrl + O
Refactoring Code
- Function Rename : Ctrl + R, Ctrl + R
- Code up and down : Alt + Up/Down
- Save : Ctrl + S
- Save All : Ctrl + Shift + S
- IntelliSense refresh suggestion : Ctrl + J
Debugging
- Start : F5
- Step Over : F10
- Step Into : F11
- Step Out : Shift + F11
- Stop : Shift + F5
Visual Studio with CMake
https://devblogs.microsoft.com/cppblog/cmake-support-in-visual-studio/
C++ Refactoring
https://devblogs.microsoft.com/cppblog/all-about-c-refactoring-in-visual-studio-2015-preview/
참고
https://devblogs.microsoft.com/cppblog/c-debugging-and-diagnostics/
https://devblogs.microsoft.com/cppblog/c-code-editing-and-navigation-in-visual-studio/
https://devblogs.microsoft.com/cppblog/getting-started-with-visual-studio-for-c-and-cpp-development/
'개발 > C,C++' 카테고리의 다른 글
.dll과 .lib의 차이 (0) | 2023.02.23 |
---|---|
[C++] invalid new-expression of abstract class type 에러 (0) | 2022.04.10 |