org-babel-keys.el 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ;;; org-babel-keys.el --- key bindings for org-babel
  2. ;; Copyright (C) 2009 Eric Schulte
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;;; License:
  8. ;; This program is free software; you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation; either version 3, or (at your option)
  11. ;; any later version.
  12. ;;
  13. ;; This program is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;;
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;; Commentary:
  23. ;; Add some org-babel keybindings to the org-mode keymap for exposing
  24. ;; org-babel functions. These will all share the common C-c M-b
  25. ;; prefix. See the value of `org-babel-key-bindings' for a list of
  26. ;; interactive functions and their associated keys.
  27. ;;; Code:
  28. (require 'org-babel)
  29. (defvar org-babel-key-prefix "\C-c\M-b"
  30. "Prefix behind which all org-babel interactive key-binding will
  31. be placed. See `org-babel-key-bindings' for the list of
  32. interactive babel functions which are assigned key bindings.")
  33. (defvar org-babel-key-bindings
  34. '(("t" . org-babel-tangle)
  35. ("T" . org-babel-tangle-file)
  36. ("e" . org-babel-execute-src-block)
  37. ("s" . org-babel-execute-subtree)
  38. ("b" . org-babel-execute-buffer)
  39. ("h" . org-babel-sha1-hash)
  40. ("g" . org-babel-goto-named-source-block)
  41. ("l" . org-babel-lob-ingest)
  42. ("z" . org-babel-switch-to-session)
  43. ("p" . org-babel-expand-src-block))
  44. "Org-babel keybindings. This list associates interactive
  45. org-babel functions with keys. Each element of this list will
  46. add an entry to the `org-mode-map' using the letter key which is
  47. the `car' of the a-list placed behind the generic
  48. `org-babel-key-prefix'.")
  49. (mapc (lambda (pair)
  50. (message "%S" pair)
  51. (define-key org-mode-map
  52. (concat org-babel-key-prefix (car pair))
  53. (cdr pair)))
  54. org-babel-key-bindings)
  55. (provide 'org-babel-keys)
  56. ;;; org-babel-keys.el ends here