emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Xor3 <eude.xj@foxmail.com>
To: emacs-orgmode <emacs-orgmode@gnu.org>
Subject: How to execute org babel src block  line by line?
Date: Mon, 18 Apr 2016 16:44:48 +0800	[thread overview]
Message-ID: <tencent_6F36A5CE52D34ED938F4C2DB@qq.com> (raw)

Hi community,
   I want to execute org babel src block one line a time. 
   Here is what I have tried.
   I use `isend' to send things to REPL buffer. When "C-<return>"  is pressed at first time,  a REPL buffer which is decided by  `lang' params  is startd. Then everything send to that buffer. An additional param `:dir' is configured to decide the starting `default-directry' of the REPL command.  
  
=================================================
(eval-after-load "org"
      '(progn
        ;; ;; (org-defkey org-mode-map (kbd "C-<return>") 'org-isend-send)
        (define-key org-mode-map (kbd "C-<return>") 'org-isend-send)

        (defun org-isend-send()
          (interactive)
          (let* ((oldbuf (current-buffer))
                 (info (org-babel-get-src-block-info))
                 (lang (nth 0 info))
                 (body (nth 1 info))
                 (params (nth 2 info))
                 (session (cdr (assoc :session params)))
                 (dir (cdr (assoc :dir params)))
                 (isend--command-buffer (concat "*" session "*"))
                 (working-directory
                  (or (and dir (file-name-as-directory dir)) default-directory)))
            (when  (not (get-buffer isend--command-buffer))
              (cond
               ((string-equal lang "python") (save-current-buffer
                                               (let ((default-directory working-directory))
                                                 (call-interactively 'run-python)
                                                 (with-current-buffer "*Python*"
                                                   (rename-buffer isend--command-buffer)))))
               ((string-equal lang "sh") (save-current-buffer
                                           (let ((default-directory working-directory))
                                             (if (string-equal session "eshell")
                                                 (eshell)
                                               (progn
                                                 (shell)
                                                 (with-current-buffer "*shell*"
                                                   (rename-buffer isend--command-buffer)))))))
               (t (error "session?")))
              (require 'isend)
              (require 'isend-mode)
              (when (not isend-mode)
                (isend-mode 1)
                (make-local-variable 'isend-mode-map)
                (define-key isend-mode-map (kbd "C-<return>") nil)
                (local-set-key (kbd "C-<return>") 'org-isend-send))
              (cond
               ((string-equal lang "python") (isend-ipython-setup))
               (t (isend-shell-setup)))
              )
            ;; (display-buffer isend--command-buffer)
            (isend-display-buffer)
            (call-interactively 'isend-send)
            ;; (with-current-buffer isend--command-buffer
            ;;   (goto-char (point-max))
            ;;   (comint-send-input)
            ;;   (funcall (key-binding (kbd "RET")))
            ;;   )
            ))))
  ========================================

  I want to execute my shells/python/ruby scirpts  this way by writing out them first, then `C-<return>' doing the rest.

  Does anyone know a better or more native `org' way to do this?
  Thank you for your help.

             reply	other threads:[~2016-04-18  8:45 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-18  8:44 Xor3 [this message]
2016-04-19 19:05 ` How to execute org babel src block line by line? Eduardo Ochs

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=tencent_6F36A5CE52D34ED938F4C2DB@qq.com \
    --to=eude.xj@foxmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).