Created
January 9, 2009 00:22
-
-
Save archaelus/44957 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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