Skip to content

Instantly share code, notes, and snippets.

@judofyr
Created January 18, 2009 11:37
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 judofyr/48618 to your computer and use it in GitHub Desktop.
Save judofyr/48618 to your computer and use it in GitHub Desktop.
(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