Created
January 18, 2009 11:37
-
-
Save judofyr/48618 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 scheme-run-outline (arg) | |
(interactive "p") | |
(save-excursion | |
(outline-previous-visible-heading arg) | |
(setq before (point)) | |
(outline-next-visible-heading arg) | |
(scheme-send-region before (point)))) | |
(define-key scheme-mode-map (kbd "C-c C-o") 'scheme-run-outline) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment