Variable: ob-clojure-nbb-command

ob-clojure-nbb-command is a customizable variable defined in ob-clojure.el.gz.

Value

nil

Documentation

Nbb command used by the ClojureScript nbb backend.

This variable was added, or its default value changed, in Org version
9.7.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ob-clojure.el.gz
(defcustom ob-clojure-nbb-command (or (executable-find "nbb")
                                      (when-let (npx (executable-find "npx"))
                                        (concat npx " nbb")))
  "Nbb command used by the ClojureScript `nbb' backend."
  :type '(choice string (const nil))
  :group 'org-babel
  :package-version '(Org . "9.7"))