Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: Tiodani on March 30, 2018, 11:09:35 pm

Title: Help with Codeblocks equivalents of Eclipse shortcuts
Post by: Tiodani on March 30, 2018, 11:09:35 pm
Hello, I'm a little rusty with Codeblocks after programming mostly in Java for quite a long time, and I'm getting the hang of its own keyboard shortcuts to make usability better with the keyboard.

But there are two commands that I searched everywhere and didn't find any Codeblocks equivalent, that are:

-Cycling through positions of the code the cursor was previously on (Alt + left/arrow keys on Eclipse)
-Opening a dialog box from which we can see all variables and functions declared within the class, and select one to jump to them (Ctrl + O on Eclipse)

How can I do these on Codeblocks?
Title: Re: Help with Codeblocks equivalents of Eclipse shortcuts
Post by: oBFusCATed on March 30, 2018, 11:26:51 pm
- Use browse tracker, but it doesn't provide exactly the same feature
- Search -> Goto function or Ctrl-Shift-G (only for functions).
Title: Re: Help with Codeblocks equivalents of Eclipse shortcuts
Post by: Tiodani on March 31, 2018, 09:42:04 am
Thanks, that'll do it  ;)