-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bad defsystem indentation #637
Comments
Hmm, it aligns as it should here. |
Oh. Interesting. I do have an inferior lisp session open. Maybe it's something about my configuration then? I thought I tested this in a plain environment, but I can double check. |
I do not know. I just observed and wanted to mention that without an inferior lisp session things like, i.e. |
I do see this in a plain environment, with a sly connection started, but only under Allegro Common Lisp it seems. For example, it will happen with this minimal init: ;;; -*- lexical-binding: t -*-
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(package-initialize)
;; This provides a nice configuration interface for installing and configuring
;; packages from your .emacs
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(use-package sly
:ensure t
:config
;; can change to your own path
(setq inferior-lisp-program "alisp")) But not when i set |
In the beginning of a Lisp session, SLY and Swank exchange information about how how to indent certain macros. Maybe that communication isn't happening as it should when |
Sly now appears to indent defsystems like this:
Instead of:
Which aligns with Slime, ASDF documentation, and slynk's own defsystems.
The text was updated successfully, but these errors were encountered: