Created
September 7, 2013 19:38
-
-
Save bonkydog/6478571 to your computer and use it in GitHub Desktop.
Save and feed the current file to Oz compiler
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 oz-save-and-feed-current-file () | |
| "Save the current file and feed it to the Oz Compiler" | |
| (interactive) | |
| (save-buffer) | |
| (oz-feed-file buffer-file-name)) | |
| (global-set-key (kbd "<f12>") 'oz-save-and-feed-current-file) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment