emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Hooking document specific src blocks into default actions
@ 2018-02-26 12:28 Alex Bennée
  2018-02-26 17:44 ` Alex Bennée
  0 siblings, 1 reply; 2+ messages in thread
From: Alex Bennée @ 2018-02-26 12:28 UTC (permalink / raw)
  To: emacs-orgmode


Hi,

I've been using these for a while but I recently wanted to add a
function at the head of the ctrl-c-ctrl-c processing:

  (defvar my-org-default-action nil
    "Default action for this document to run on `org-ctrl-c-ctrl-c'.
  \\<org-mode-map>
  This will run via `org-ctrl-c-ctrl-c-hook' and should return a
  non-nil result if it processed something. As such it can override
  default `org-mode' behaviour for \\[org-ctrl-c-ctrl-c]. If you
  want something to run at the end then you need to use
  `my-org-default-code-block'")
  (make-variable-buffer-local 'my-org-default-action)

  (defun my-org--do-action (func-or-string)
    "Evaluate a code block or call a function `FUNC-OR-STRING' from org-file."
    (let ((current-point (point)))
      (cond
       ((stringp func-or-string)
        (save-excursion
          (org-babel-goto-named-src-block func-or-string)
          (org-babel-when-in-src-block
           (org-babel-eval-wipe-error-buffer)
           (org-babel-execute-src-block current-prefix-arg nil
                                        '((:called-from . current-point))))))
        ((functionp func-or-string)
         (funcall func-or-string))
        (t (error "What to do with: %s" func-or-string)))))

  (defun my-org-run-default-action ()
    "Execute default action for this org file."
    (interactive)
    (when my-org-default-action
      (my-org--do-action my-org-default-action)))

  (add-to-list 'org-ctrl-c-ctrl-c-hook
               'my-org-run-default-action)

However I've run into a small problem that when I execute the source
block I end up with 't every time as we successfully executed the block
even if it didn't end up doing anything at the time.

Is there a better way to invoke source blocks from the current
org-document than this? One where the eventual result can be returned
into the calling lisp so org-ctrl-c-ctrl-c-hook can move on if we didn't
do anything?

--
Alex Bennée

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-02-26 17:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-26 12:28 Hooking document specific src blocks into default actions Alex Bennée
2018-02-26 17:44 ` Alex Bennée

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).