Variable: lua-documentation-function

lua-documentation-function is a customizable variable defined in lua-mode.el.gz.

Value

browse-url

Documentation

Function used to fetch the Lua reference manual.

This variable was added, or its default value changed, in Emacs 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/lua-mode.el.gz
(defcustom lua-documentation-function 'browse-url
  "Function used to fetch the Lua reference manual."
  :type `(radio (function-item browse-url)
                ,@(when (fboundp 'eww) '((function-item eww)))
                ,@(when (fboundp 'w3m-browse-url)
                    '((function-item w3m-browse-url)))
                (function :tag "Other function"))
  :version "31.1")