Sign in
Google apps
Main menu
Post a Comment On:
fisch im wasser
"GNU TAGS"
No comments yet. -
1 – 0 of 0
I somwhat find the xemacs code for etags better, amongs other things you can specify a list where to search for TAGS files. While this macro isn't that sophisticated it covers my needs 99% of the time. .doc { } .function-name { /* font-lock-function-name-face */ color: #0000ff; } .keyword { /* font-lock-keyword-face */ color: #a020f0; } .string { /* font-lock-string-face */ color: #008b00; } (defadvice find-tag (before c-tag-file activate) "Automatically search for tags in higher directories." (let ((file1 (concat default-directory "TAGS")) (file2 (concat default-directory "../TAGS")) (file3 (concat default-directory "../../TAGS"))) (let ((tag-file (cond ((file-exists-p file1) file1) ((file-exists-p file2) file2) ((file-exists-p file3) file3) (t nil)))) (when tag-file (visit-tags-table tag-file)))))
posted by Engelke at
16:52
on 15 May 2004
Leave your comment
You can use some HTML tags, such as
<b>, <i>, <a>
Comments on this blog are restricted to team members.
Google Account
You will be asked to sign in after submitting your comment.
Please prove you're not a robot
"GNU TAGS"
No comments yet. -