On Tue, Mar 15, 2011 at 05:55:16PM +0100, Jürgen Spitzmüller wrote: > Vincent van Ravesteijn wrote: > > Usually the IDE has a pretty easy way of navigating to the declaration > > of a function. > > I guess our coding workflow just differs. It is well possible that mine is > blatantly amateurish. I don't use an IDE, for example. I just use a (fairly > simple) text editor and a terminal. No specific reasons for this, this is > probably just the result of how I stumbled into coding.
Even non-IDEs sometimes have a way to set up macros or such. In vim e.g. (see http://vim.wikia.com/wiki/Easily_switch_between_source_and_header_file) map <F4> :e %:p:s,.h$,.X123X,:s,.cpp$,.h,:s,.X123X$,.cpp,<CR> Slightly bizarre, admittedly... Andre'