Author Topic: Help with Codeblocks equivalents of Eclipse shortcuts  (Read 2503 times)

Offline Tiodani

  • Single posting newcomer
  • *
  • Posts: 2
Help with Codeblocks equivalents of Eclipse shortcuts
« 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?

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Help with Codeblocks equivalents of Eclipse shortcuts
« Reply #1 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).
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline Tiodani

  • Single posting newcomer
  • *
  • Posts: 2
Re: Help with Codeblocks equivalents of Eclipse shortcuts
« Reply #2 on: March 31, 2018, 09:42:04 am »
Thanks, that'll do it  ;)