Explorar el Código

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"
Eric Schulte hace 14 años
padre
commit
c32ece6e76
Se han modificado 2 ficheros con 6 adiciones y 3 borrados
  1. 2 1
      doc/orgcard.tex
  2. 4 2
      lisp/ob-keys.el

+ 2 - 1
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}

+ 4 - 2
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)