Giter Site home page Giter Site logo

Send input to nix repl? about nix-mode HOT 2 OPEN

alejandrogallo avatar alejandrogallo commented on August 16, 2024 2
Send input to nix repl?

from nix-mode.

Comments (2)

idlip avatar idlip commented on August 16, 2024

Hey @alejandrogallo I was also thinking why wasn't there interactive interpreting feature for nix-mode. Just now, I went through python and ess way of evaluating lines.

Came up with an function:

(defun nix-eval-line ()
  "Evaluates the line at point in nix-repl."
  (interactive)
  (let* ((start (line-beginning-position))
         (end (line-end-position))
         (msg (format "%s" (buffer-substring start end))))
    (pop-to-buffer "*Nix-REPL*")
    (insert msg)
    (comint-send-input)
    (other-window 1)))

With little more work, we can bring similar function like, nix-eval-buffer, nix-eval-region (I thing, line and region should be made as dwin)

Note: It does not start nix-repl, instead uses existing one.
Let's see if author wants something like this.

from nix-mode.

idlip avatar idlip commented on August 16, 2024

Made a working nix-eval-dwim variant:

(defun nix-eval-dwim ()
  (interactive)
  (let* ((start (line-beginning-position))
         (end (line-end-position))
	 (region-string (buffer-substring (region-beginning) (region-end)))
         (msg (format "%s" (if (use-region-p) region-string (buffer-substring start end)))))
    (pop-to-buffer "*Nix-REPL*")
    (insert msg)
    (comint-send-input)
    (other-window 1)))

from nix-mode.

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.