Use lisp-mode for cl-launch scripts

This commit is contained in:
contrapunctus 2022-01-24 00:43:07 +05:30
parent ea55857cd3
commit 6bfebe5b51
1 changed files with 7 additions and 0 deletions

View File

@ -4798,6 +4798,12 @@ All COMMAND-SPECS should be a list in the form
:PROPERTIES:
:CUSTOM_ID: programming-common-lisp
:END:
#+BEGIN_SRC emacs-lisp
(use-package lisp-mode
:interpreter ("cl" . lisp-mode)) ;; cl-launch scripts
#+END_SRC
*** redshank
#+BEGIN_SRC emacs-lisp
(use-package redshank
@ -4814,6 +4820,7 @@ All COMMAND-SPECS should be a list in the form
:ensure t
:commands (slime-eval-buffer slime-eval-defun)
:mode ("\\.asd$" . asdf-mode)
:interpreter ("cl" . slime-mode) ;; cl-launch scripts
:bind
(:map slime-mode-map
("M-n" . next-line)