Skip to content

Instantly share code, notes, and snippets.

@dleslie
Created February 25, 2012 23:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dleslie/1911698 to your computer and use it in GitHub Desktop.
Save dleslie/1911698 to your computer and use it in GitHub Desktop.
Load Scheme Keywords from TAGS File
(defun load-scheme-tags (scheme-tags-location)
(interactive)
(let ((existing-tags tags-table-list))
(setq tags-table-list nil)
(visit-tags-table scheme-tags-location)
(tags-completion-table)
(add-font-lock-keywords '(scheme-mode inferior-scheme-mode) tags-completion-table)
(setq tags-table-list existing-tags))
t)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment