ON Forums

Full Version: Shortcut for C/C++
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Editing
Ctrl+F - Find/Replace.
Ctrl+K - Find next -> Be careful, it is not F3, like many other applications.
Ctrl+L - Go to line -> Be careful, it is not Ctrl+G, like many other applications.
Ctrl+Space - Code completion. For example, if you type “do” and press Ctrl+Space, the IDE will display code template for “do while” loop. Furthermore, you can display a list of class member by pressing Ctrl+Space too. Normally, they are displayed when you type “.”, “->” or “::” after a member class variable. In some cases, you may need Ctrl+Space, for example when you move to another line and then come back to the previous line.
Ctrl+Shift+Up and Ctrl+Shift+Down - Go to the next or previous methods and/or functions.


Navigation
Ctrl+F6 - Navigate to the next file editor. This is always useful shortcut, especially when you are working with several files at the same time.
Ctrl+F7 - Navigate to the next view, for example you can switch from the file editor to file tree view.
Ctrl+F8 - Navigate to the next perspective, for example you can switch from the Symbian perspective to the Debug perspective.


Building and Running
Ctrl+B - Build the current project.
F11 - Debug the current project.
Ctrl+F11 - Run the current project.
Ctrl+. and Ctrl., - Go to the next and previous annotation. You may find this useful when you have several error messages from the compiler. You can use these shortcuts to walk through the list of error messages.


Debugging
Ctrl+Shift+B - Toggle breakpoint. Note that by default, you can only use this shortcut in the Debug perspective. To enable this in C/C++ perspective, do Window -> Customize perspective -> Commands -> Breakpoints.
F5 - Step Into.
F6 - Step Over.
F8 - Resume.
Ctrl+R - Run to line.
Your post will be very helpful to them who are developing their courier in programing , I am a programmer and i used to do programming in c/c++. While doing programming there are no of times we have to debug it, Your shortcut's list is very useful to me.
These shortcuts that you have given is really nice, I like this information, C + + is an enhanced version of the C language C + + includes everything that is in C and adds support for object-oriented programming (OOP), I hope that people will really have these and also try to use these shortcuts in C / C + +.
Reference URL's