Author Topic: Browsing code  (Read 3632 times)

gema

  • Guest
Browsing code
« on: June 15, 2007, 12:52:21 am »
I use Code::Block to browse code.I am working on C++ code and found difficulty in going back to the called function whenever i go to the defination of the code.
The only option i have is to remmbeer the name of the file from where i had edit to see the defination.
Please if you have any solution or option present in Code::Block through which  I can make my way simple then please let me know.

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2778
Re: Browsing code
« Reply #1 on: June 15, 2007, 01:17:52 am »
I use Code::Block to browse code.I am working on C++ code and found difficulty in going back to the called function whenever i go to the defination of the code.
The only option i have is to remmbeer the name of the file from where i had edit to see the defination.
Please if you have any solution or option present in Code::Block through which  I can make my way simple then please let me know.

F11 will switch back and forth between the header and the cpp file.
Ctrl-Tab (smart tabbing) will switch you back and forth between the last file you viewed.
BrowseTracker will remember the last 20 editor files you activated.
http://wiki.codeblocks.org/index.php?title=BrowseTracker_plugin

The context menu (right click) "swap header/source" in an editor will switch back and forth between the header and source files.

Ctrl-B will set a bookmark on an editor line. Alt-Pgup/Pgdn will skip the the bookmarks.
http://wiki.codeblocks.org/index.php?title=Keyboard_Shortcuts
« Last Edit: June 15, 2007, 01:22:35 am by Pecan »