Skip to content

Instantly share code, notes, and snippets.

@cbilson
Created July 5, 2013 17:09
Show Gist options
  • Save cbilson/5935906 to your computer and use it in GitHub Desktop.
Save cbilson/5935906 to your computer and use it in GitHub Desktop.
TFS link type for org-mode
(defvar *tfs-server* "http://hqvm32:8080")
(defvar *tfs-root* "/tfs/Calico/EIS")
(defun org-open-tfs (item)
(browse-url (concat *tfs-server* *tfs-root* "/_workItems#_a=edit&id=" item)))
(org-add-link-type "tfs" 'org-open-tfs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment