I am new to emacs and I was wondering
if there is a shortcut to switch between header/source and the corresponding source/header file
if there is a reference card like the general emacs ref card
Thanks !
I am new to emacs and I was wondering
if there is a shortcut to switch between header/source and the corresponding source/header file
if there is a reference card like the general emacs ref card
Thanks !
I'm using eassist package from CEDET contrib, and it has eassist-switch-h-cpp function to do this taks
Check the excellent Emacs-fu article Quickly switching between header and implementation
In case the blog post has gone, here is copy of the solution:
There's
ff-find-other-file
.You can bind this to your own key using something like:
But of course you'll need to pick a key that doesn't already have something useful bound to it :)