Function: lua-restart-with-whole-file

lua-restart-with-whole-file is an interactive and byte-compiled function defined in lua-mode.el.gz.

Signature

(lua-restart-with-whole-file)

Documentation

Restart Lua process and send whole file as input.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/lua-mode.el.gz
(defun lua-restart-with-whole-file ()
  "Restart Lua process and send whole file as input."
  (interactive)
  (lua-kill-process)
  (lua-send-buffer))