; Bind fast-tags keys to their defaults and set fast-tags to autoload. (global-set-key "\e." 'fast-goto-tag) (global-set-key "\e," 'goto-tag-expr) (global-set-key "\^C\^V" 'fast-visit-function)Fast-goto-tag (M-.) prompts for a string tag, which can be the prefix of a set of tags to find. Goto-tag-expr (M-,) prompts for a regular expression tag. A simple string argument can be anywhere in the tags that it will match, and more complicated expressions can include character classes and so on. Both of them will step to the next tag in the set if given a ^U prefix argument.
Fast-visit-function (^C-^V) is like fast-goto-tag, but takes the word under or before the cursor as the tag, and pushes a recursive-edit level. So you can descend down through the definitions, and return using C-M-c.
PCL-CVS ...