summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2010-07-30 11:02:42 -0600
committerEric Schulte <schulte.eric@gmail.com>2010-07-30 11:02:42 -0600
commitc32ece6e76f52766d063c531c97c49bb9f371177 (patch)
tree6364ff998ea328354089eb9e6fae450e6165813e
parent3ee6b99f06c6b1bed88e65d78cafc98bf6de9819 (diff)
downloadorg-mode-c32ece6e76f52766d063c531c97c49bb9f371177.tar.gz
ob-keys: org-babel-load-in-session now using "l", org-babel-lob-ingest switched to "i"
* doc/orgcard.tex: "l" used for org-babel-load-in-session and org-babel-lob-ingest switched to "i"
-rw-r--r--doc/orgcard.tex3
-rw-r--r--lisp/ob-keys.el6
2 files changed, 6 insertions, 3 deletions
diff --git a/doc/orgcard.tex b/doc/orgcard.tex
index 69c0326..810850e 100644
--- a/doc/orgcard.tex
+++ b/doc/orgcard.tex
@@ -486,8 +486,9 @@ formula, \kbd{:=} a field formula.
\key{execute all code blocks in current subtree}{C-c C-v s}
\key{tangle code blocks in current file}{C-c C-v t}
\key{tangle code blocks in supplied file}{C-c C-v f}
-\key{ingest all code blocks in supplied file into the Library of Babel}{C-c C-v l}
+\key{ingest all code blocks in supplied file into the Library of Babel}{C-c C-v i}
\key{switch to the session of the current code block}{C-c C-v z}
+\key{load expanded body of the current code block into a session}{C-c C-v l}
\key{view sha1 hash of the current code block}{C-c C-v a}
% \section{Remember-mode Integration}
diff --git a/lisp/ob-keys.el b/lisp/ob-keys.el
index e0b2837..837db24 100644
--- a/lisp/ob-keys.el
+++ b/lisp/ob-keys.el
@@ -69,8 +69,10 @@ functions which are assigned key bindings, and see
("t" . org-babel-tangle)
("\C-f" . org-babel-tangle-file)
("f" . org-babel-tangle-file)
- ("\C-l" . org-babel-lob-ingest)
- ("l" . org-babel-lob-ingest)
+ ("\C-l" . org-babel-load-in-session)
+ ("l" . org-babel-load-in-session)
+ ("\C-i" . org-babel-lob-ingest)
+ ("i" . org-babel-lob-ingest)
("\C-z" . org-babel-switch-to-session)
("z" . org-babel-switch-to-session)
("\C-a" . org-babel-sha1-hash)