Function: org-src--get-known-shells

org-src--get-known-shells is a byte-compiled function defined in org-src.el.gz.

Signature

(org-src--get-known-shells)

Documentation

List all the shells in sh-ancestor-alist for org-src-lang-modes.

The shells are associated with sh-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-src.el.gz
(defun org-src--get-known-shells ()
  "List all the shells in `sh-ancestor-alist' for `org-src-lang-modes'.
The shells are associated with `sh-mode'."
  (mapcar
   (lambda (shell) (cons (symbol-name shell) 'sh))
   (delete-dups (org--flatten-tree sh-ancestor-alist))))