Code Monkey home page Code Monkey logo

Comments (2)

chrisbarrett avatar chrisbarrett commented on May 29, 2024

I've played around with something like the following:

(defgroup literate-calc-mode nil
  "Display calc results in buffers via overlays."
  :group 'editing
  :prefix "literate-calc-mode-")

(defcustom literate-calc-mode-inhibit-line-functions '(literate-calc-mode--default-inhibit-line-function)
  "Hook functions called for each line to test whether to inhibit calculation.

If any of these functions return non-nil, overlays will not be displayed."
  :group 'literate-calc-mode
  :type 'hook)

(defun literate-calc-mode--default-inhibit-line-function ()
  ;; TODO: default implementation
  )

And then modifying the implementation to call this hook var to check whether to interpret the line:

(defun literate-calc-eval-buffer ()
  "Evaluate all calc expressions in the current buffer in order."
  (interactive)
  (literate-calc-clear-overlays)
  (unless (string-empty-p (buffer-string))
    (save-excursion
      (goto-char (point-min))
      (let ((buffer-line-count (count-lines (point-min) (point-max)))
            (line-number 1))
        (while (<= line-number buffer-line-count)
          ;; NOTE: We call the hook here to selectively inhibit interpreting the line.
          (unless (run-hook-with-args-until-success 'literate-calc-mode-inhibit-line-functions)
            (let ((binding (literate-calc--process-line (thing-at-point 'line)
                                                        literate-calc--scope)))
              (literate-calc--add-binding binding)))
          (setq line-number (1+ line-number))
          (forward-line 1))))))

Then as a user, I can do my own thing.

(defun my/in-org-src-block-p ()
  (when (derived-mode-p 'org-mode)
    (org-in-src-block-p)))

(add-hook 'literate-calc-mode-inhibit-line-functions #'my/in-org-src-block-p)

from literate-calc-mode.el.

sulami avatar sulami commented on May 29, 2024

from literate-calc-mode.el.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.