Skip to content

Instantly share code, notes, and snippets.

@archaelus
Created January 9, 2009 00:22
Show Gist options
  • Save archaelus/44957 to your computer and use it in GitHub Desktop.
Save archaelus/44957 to your computer and use it in GitHub Desktop.
(defun pipes-org-mode-hook ()
(interactive)
(local-set-key "\C-w" #'pipes-make-tag-from-wr)
(message "pipes mode enabled"))
(defun pipes-make-tag-from-wr (work-request-number)
(interactive "nWork request number")
(message "I should do something with the work-request-number"))
(add-hook 'org-mode-hook #'pipes-org-mode-hook)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment