From 505d999cf68bbfa51d7cec2bf86d682d8be23ef8 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Fri, 26 Jan 2024 10:20:29 +0100 Subject: [PATCH] Improve indentation for multi-line comments * sweeprolog.el (sweeprolog-indent-line): Indent multi-lines comment lines according to previous line. * sweeprolog-tests.el (indentation): Test it. --- sweeprolog-tests.el | 15 +++++++++++++++ sweeprolog.el | 20 +++++++++++++++++--- 2 files changed, 32 insertions(+), 3 deletions(-) diff --git a/sweeprolog-tests.el b/sweeprolog-tests.el index c3897e6..67fb6e4 100644 --- a/sweeprolog-tests.el +++ b/sweeprolog-tests.el @@ -1846,6 +1846,21 @@ body. head, right_hand_context --> body. +") + (sweeprolog-test-indentation + "/** Foo + +This module provides foo bar + baz spam + foo bar baz +*/ +" + "/** Foo + +This module provides foo bar +baz spam +foo bar baz +*/ ")) (sweeprolog-deftest forward-sexp-with-adjacent-operators () diff --git a/sweeprolog.el b/sweeprolog.el index 3e96ceb..643ed32 100644 --- a/sweeprolog.el +++ b/sweeprolog.el @@ -5297,12 +5297,26 @@ accordingly." col))))) (defun sweeprolog-indent-line () - "Indent the current line in a `sweeprolog-mode' buffer." + "Indent the current line in a Sweep Prolog mode buffer." (interactive) (let ((pos (- (point-max) (point)))) (back-to-indentation) - (let ((column (if (nth 8 (syntax-ppss)) - 'noindent + (let ((column (if-let ((ppss (syntax-ppss)) + (open (nth 8 ppss))) + ;; Inside a comment or a string. + (if (nth 4 ppss) + ;; It's a comment. Indent like + ;; `indent--default-inside-comment'. + (save-excursion + (forward-line -1) + (skip-chars-forward " \t") + (when (< (1- (point)) open (line-end-position)) + (goto-char open) + (when (looking-at comment-start-skip) + (goto-char (match-end 0)))) + (current-column)) + ;; It's a string. Don't indent. + 'noindent) (if-let ((open (and (not (eobp)) (= (sweeprolog-syntax-class-at (point)) 5) (nth 1 (syntax-ppss))))) -- 2.39.5