In emacs, the clisp can run in its own buffer as below:
(defun clisp ()
(interactive)
(async-shell-command "clisp -q -modern -ansi" "*clisp*"))
(global-set-key "\C-c\C-l" 'clisp)
Without using emacs, we can use xterm -e clisp
to run it. Can clisp be run inside a xmonad window without using xterm ?
Sincerely!