Silex/docker.el@0874520 -> Silex/docker.el@d6233bd editorconfig/editorconfig-emacs@19de0ec -> editorconfig/editorconfig-emacs@9a73ff7 emacs-lsp/dap-mode@8f69dc2 -> emacs-lsp/dap-mode@7ad9157 emacs-lsp/lsp-mode@81d62d5 -> emacs-lsp/lsp-mode@d5f0410 emacs-lsp/lsp-ui@271b47c -> emacs-lsp/lsp-ui@c3e7a37 emacsorphanage/quickrun@2e37ce9 -> emacsorphanage/quickrun@c6ce1f3 gilbertw1/dash-docs@111fd9b -> gilbertw1/dash-docs@dafc8fc jacktasia/dumb-jump@d760aa8 -> jacktasia/dumb-jump@d86f59c joaotavora/eglot@d99a447 -> joaotavora/eglot@ac9239b magit/forge@09bf8ad -> magit/forge@6f299d2 magit/magit@b1b2683 -> magit/magit@ae82fcf millejoh/emacs-ipython-notebook@42134ad -> millejoh/emacs-ipython-notebook@ee31cdb paradoxxxzero/jinja2-mode@cfaa7bb -> paradoxxxzero/jinja2-mode@4540f99 tkf/emacs-request@216d570 -> tkf/emacs-request@912525c tumashu/posframe@093b29a -> tumashu/posframe@6285217 wbolster/emacs-direnv@1daf479 -> wbolster/emacs-direnv@f5484b0 yoshiki/yaml-mode@cecf4b1 -> yoshiki/yaml-mode@34648f2
tools/eval
Description
This modules adds inline code evaluation support to Emacs and a universal interface for opening and interacting with REPLs.
Module Flags
+overlay
Enables the use of overlays (near the cursor) to display the result of inline code evaluation (rather than the minibuffer). That is, unless the results are too big, in which case it will still fall back to popup buffers.
Plugins
Hacks
-
Quickrun has been modified to:
- Use only one output window, in case of consecutive execution of code.
- The quickrun window will resize itself to fit its output, once the underlying process is finished executing the code.
Prerequisites
This module has no direct prerequisites.
However, many languages will require that you install their interpreters, code
runners and/or repls to power the functionality of this module. Visit the
documentation of their respective :lang
module for instructions.
Features
Inline Code Evaluation
Quickrun can be invoked via:
M-x +eval/buffer
(orgR
, orM-r
)M-x +eval/region
M-x +eval/region-and-replace
- Evil users can use the
gr
operator to select and run a region.
REPLs
Invoked via:
SPC o r
or:repl
will open a REPL in a popup window.SPC o R
or:repl!
will open a REPL in the current window. If a REPL is already open and a selection is active, it will be sent to the REPL.M-x +eval/open-repl-other-window
(SPC o r
)M-x +eval/open-repl-same-window
(SPC o R
)M-x +eval/send-region-to-repl
(SPC c s
) while a selection (and REPL) is active
Configuration
Register a REPL for a major-mode
REPLs are defined for most languages Doom supports. Check that language module's README.org to see if it does (and if it requires additional setup).
To use them, you may use M-x +eval/open-repl-other-window
, M-x
+eval/open-repl-same-window
, :repl
(for evil users) or the default binding:
SPC o r
. These will open a REPL in a popup window.
You can simply call that mode's REPL command manually. e.g.
M-x ielm
, but this will bar you from the benefits of Doom's REPL system (like send-to-repl functionality).
Otherwise, you can define your own for a specified major mode:
(set-repl-handler! MAJOR-MODES FUNCTION)
MAJOR-MODES is a single major mode symbol or a list of them.
FUNCTION should return a repl buffer. Any window changes in this function are ignored, then the REPL is opened in a popup window.
(defun +lua/open-repl ()
(interactive)
(lua-start-process "lua" "lua")
(pop-to-buffer lua-process-buffer))
(set-repl-handler! 'lua-mode #'+lua/open-repl)
Change how code is evaluated in a major mode
Run regions or entire buffers with Quickrun. Output is show in a popup window.
Quickrun includes support for many languages, usually by sending text directly to interpreters or compilers. However, occasionally, you'll find a language without support (like Crystal), or a language with better Emacs integration (like elisp).
Here's how you define a "runner":
(set-eval-handler! 'crystal-mode
'((:command . "crystal")
(:exec . "%c %s")
(:description . "Run Crystal script")))
A simpler version is simply to use the path to the binary:
(set-eval-handler! 'groovy-mode "groovy")
Or if you'd rather run an elisp command:
(set-eval-handler! 'emacs-lisp-mode #'+emacs-lisp-eval)