![]() ![]() ![]() ![]() Next: Tags with vi Up: Using Tags Previous: Using Tags Contents Tags with Emacs
The command gmake TAGS will create a database for a routine reference
table to be used within Emacs. This database can be accessed within
Emacs if you add either of the following lines to your .emacs file:
You can now easily navigate your Cactus flesh and Toolkits by searching for functions or ``tags'':
(defun find-tag-readonly (&rest a) (interactive) (call-interactively `find-tag a) (if (eq nil buffer-read-only) (setq buffer-read-only t)) ) (defun find-tag-readonly-next (&rest a) (interactive) (call-interactively `tags-loop-continue a) (if (eq nil buffer-read-only) (setq buffer-read-only t)) ) (global-set-key [(control meta \.)] 'find-tag-readonly) (global-set-key [(control meta \,)] 'find-tag-readonly-next)The key strokes to use when you want to browse in read-only mode are:
![]() ![]() ![]() ![]() Next: Tags with vi Up: Using Tags Previous: Using Tags Contents |