Shortcuts Tips in Carbide.c++
Development December 30th. 2006, 2:24pmAfter using Carbide.c++ for quite a while, I would like to summarize some shortcut tips in Carbide.c++. They should apply to both version 1.0 and 1.1 as well as Eclipse IDE. Hope you find them useful too…
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 you can only use this shortcut in the Debug perspective. For some reasons (that I don’t know), you cannot use this shortcut in Symbian perspective.
- F5 – Step Into.
- F6 – Step Over.
- F8 – Resume.
- Ctrl+R – Run to line.
Configuring Shortcuts
Note that you can configure shortcuts in Carbide.c++ by selecting Window | Preferences | General | Keys. This may be useful, for example if you already got used to Visual Studio’s shortcuts.

2 Responses to “Shortcuts Tips in Carbide.c++”
Comments are disabled.
January 3rd, 2007 at 5:35 am
[...] After using Carbide.c++ for quite a while, Antony Pranata compiled a list of some shortcut tips. According to Antony, all the shortcuts he mentions in his article should work with both Carbide.c++ version 1.0 and 1.1 as well as Eclipse IDE. [...]
January 5th, 2007 at 4:48 am
[...] Ebenfalls gut und aus derselben Quelle: Die wichtigsten Shortcuts für die Carbide.ui [...]