Làm thế nào để thụt lề từ khóa phù hợp?


17

Có lẽ bị ảnh hưởng bởi Clojure, tôi thường sử dụng danh sách tài sản làm cấu trúc dữ liệu. Emacs hầu hết thời gian thụt lề như thế này,

`(:token ,token
         :token-quality ,quality)  , 

trong khi đây là những gì tôi thích

`(:token ,token
  :token-quality ,quality) . 

Vì vậy, tôi tự hỏi, nếu ai đó đã giải quyết điều này?


3
Hành vi của các mục danh sách được mã hóa cứng, vì vậy bạn cần thay thế chức năng như được trình bày ở đây .
wasamasa

Tốt lắm, cảm ơn nhé. Nhưng tại sao lại xác định lại nó, nếu có một biến cho nó?
Politza

@wasamasa Tôi nghĩ rằng tôi có thể chuyển sang điều đó .. chỉ cần đổi tên chức năng đó thành Fuco1/lisp-indent-functionvà làm(add-hook 'emacs-lisp-mode-hook (lambda () (setq-local lisp-indent-function #'Fuco1/lisp-indent-function)))
Kaushal Modi

Câu trả lời:


4

Điều đó có thể đạt được bằng cách thay đổi lisp-indent-functionchế độ cho emacs-lisp:

(add-hook 'emacs-lisp-mode-hook
          (lambda () (setq-local lisp-indent-function #'common-lisp-indent-function)))

Từ lisp-mode.eltrong nguồn emacs,

 (defcustom lisp-indent-function 'lisp-indent-function
  "A function to be called by `calculate-lisp-indent'.
It indents the arguments of a Lisp function call.  This function
should accept two arguments: the indent-point, and the
`parse-partial-sexp' state at that position.  One option for this
function is `common-lisp-indent-function'."
  :type 'function
  :group 'lisp)

Thay thế

Như @wasamasa đã đề cập trong một bình luận cho câu hỏi, @ Fuco1 (trên github.com) đã sửa đổi mặc địnhlisp-indent-function để sửa lỗi thụt lề của từ khóa (bắt đầu bằng :).

Emacs đã cung cấp biến lisp-indent-functioncho người dùng chọn chức năng nào để sử dụng để thụt lề trong các chế độ lisp.

Thay vì ghi đè định nghĩa hàm ban đầu, chúng ta có thể tạo hàm riêng và gán biến trên cho tên hàm đó.

Trong ví dụ này,

  • Lưu chức năng đã sửa đổi Fuco1 giống như Fuco1/lisp-indent-functiontrong thiết lập emacs của bạn
  • Sử dụng chức năng đó để thụt lề trong emacs-lisp-mode:
(add-hook 'emacs-lisp-mode-hook
          (lambda () (setq-local lisp-indent-function #'Fuco1/lisp-indent-function)))

Tài liệu tham khảo

Hàm được sửa đổi được dán bên dưới trong trường hợp nguồn được tham chiếu đến github bị mất.

;; https://github.com/Fuco1/.emacs.d/blob/af82072196564fa57726bdbabf97f1d35c43b7f7/site-lisp/redef.el#L20-L94
(defun Fuco1/lisp-indent-function (indent-point state)
  "This function is the normal value of the variable `lisp-indent-function'.
The function `calculate-lisp-indent' calls this to determine
if the arguments of a Lisp function call should be indented specially.

INDENT-POINT is the position at which the line being indented begins.
Point is located at the point to indent under (for default indentation);
STATE is the `parse-partial-sexp' state for that position.

If the current line is in a call to a Lisp function that has a non-nil
property `lisp-indent-function' (or the deprecated `lisp-indent-hook'),
it specifies how to indent.  The property value can be:

* `defun', meaning indent `defun'-style
  \(this is also the case if there is no property and the function
  has a name that begins with \"def\", and three or more arguments);

* an integer N, meaning indent the first N arguments specially
  (like ordinary function arguments), and then indent any further
  arguments like a body;

* a function to call that returns the indentation (or nil).
  `lisp-indent-function' calls this function with the same two arguments
  that it itself received.

This function returns either the indentation to use, or nil if the
Lisp function does not specify a special indentation."
  (let ((normal-indent (current-column))
        (orig-point (point)))
    (goto-char (1+ (elt state 1)))
    (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
    (cond
     ;; car of form doesn't seem to be a symbol, or is a keyword
     ((and (elt state 2)
           (or (not (looking-at "\\sw\\|\\s_"))
               (looking-at ":")))
      (if (not (> (save-excursion (forward-line 1) (point))
                  calculate-lisp-indent-last-sexp))
          (progn (goto-char calculate-lisp-indent-last-sexp)
                 (beginning-of-line)
                 (parse-partial-sexp (point)
                                     calculate-lisp-indent-last-sexp 0 t)))
      ;; Indent under the list or under the first sexp on the same
      ;; line as calculate-lisp-indent-last-sexp.  Note that first
      ;; thing on that line has to be complete sexp since we are
      ;; inside the innermost containing sexp.
      (backward-prefix-chars)
      (current-column))
     ((and (save-excursion
             (goto-char indent-point)
             (skip-syntax-forward " ")
             (not (looking-at ":")))
           (save-excursion
             (goto-char orig-point)
             (looking-at ":")))
      (save-excursion
        (goto-char (+ 2 (elt state 1)))
        (current-column)))
     (t
      (let ((function (buffer-substring (point)
                                        (progn (forward-sexp 1) (point))))
            method)
        (setq method (or (function-get (intern-soft function)
                                       'lisp-indent-function)
                         (get (intern-soft function) 'lisp-indent-hook)))
        (cond ((or (eq method 'defun)
                   (and (null method)
                        (> (length function) 3)
                        (string-match "\\`def" function)))
               (lisp-indent-defform state indent-point))
              ((integerp method)
               (lisp-indent-specform method state
                                     indent-point normal-indent))
              (method
               (funcall method indent-point state))))))))

Không phải là một chút cực đoan để thay đổi chức năng thụt lề hoàn toàn với ngôn ngữ khác? Tôi Guile Tôi có cùng một vấn đề trong đó #: từ khóa không được căn chỉnh theo cách tôi mong đợi, nhưng tôi sẽ không thay thế chức năng thụt lề Guile bằng chức năng được tạo cho Common Lisp.
rekado

1
@rekado Tôi đồng ý. Nhưng đây có vẻ là một trường hợp đặc biệt. Tôi đã phải đối mặt với sự khó chịu tương tự của các từ khóa không được căn chỉnh (theo định nghĩa hydra) và đang tìm kiếm các giải pháp ngoài kia. Cuối cùng tôi đã thử đề xuất này từ emacswiki và đó là một phần của cấu hình emacs của tôi khoảng một tháng nay. Tôi cũng muốn thấy một triển khai rõ ràng để sắp xếp các từ khóa trong lisp-indent-function.
Kaushal Modi

Thú vị ... Điều này cũng cần (setq lisp-backquote-indentation nil)cho danh sách trích dẫn (như trong câu hỏi ban đầu).
Politza

@politza Xin lỗi, vội vàng, tôi đã đọc sai các backquote này thành cú pháp định dạng văn bản dưới dạng các khối mã trong markdown.
Kaushal Modi

2

Giới thiệu tính toán-lisp-indent

Một giải pháp tốt hơn là ghi đè chức năng calculate-lisp-indent. Tóm lại, calculate-lisp-indentlà một hàm trả về cột mà một dòng tại điểm nên được thụt vào. Chức năng này là những gì cho lisp-indent-functionbiết mỗi dòng nên được thụt vào bao nhiêu. (xem thêm bài viết của tôi trên reddit để biết thêm thông tin).

So sánh với các câu trả lời khác

Ưu điểm mà câu trả lời này có được khi sử dụng chức năng đã sửa đổi của Fuco1 là (1) nó khắc phục được gốc rễ của vấn đề nằm ở calculate-lisp-indentđó thay vì chỉ dọn dẹp sau khi thụt lề sai được trả về bởi calculate-lisp-indent(2) nó khái quát thành các danh sách được trích dẫn và trích dẫn lại (và nó hoạt động cho dù chúng được trích dẫn / trích dẫn rõ ràng hoặc với 'và `). Nó cũng hoạt động với các trích dẫn và backquote lồng nhau tùy ý.

Ưu điểm của câu trả lời này là thay thế lisp-indent-functionbằng common-lisp-indent-functionchức năng là nó không có tác dụng phụ làm rối tung các vết lõm khác. Elisp và common-lisp được thụt lề khác nhau.

Làm thế nào nó hoạt động

Điều kiện (trong calculate-lisp-indent) này là điều quyết định xem một sexp có được thụt vào như một hàm hay không. Những gì rơi vào mệnh đề khác của nó được thụt vào như một hàm. Điều gì rơi vào mệnh đề if, được thụt lề bình thường (theo phần tử hiện tại). Để làm cho nó thụt vào danh sách được trích dẫn dưới dạng dữ liệu thay vì dưới dạng hàm, chúng ta cần thêm kiểm tra thêm cho các trường hợp danh sách được trích dẫn trong vị từ có điều kiện.

(if (= (point) calculate-lisp-indent-last-sexp)
    ;; Containing sexp has nothing before this line
    ;; except the first element.  Indent under that element.
    nil
  ;; Skip the first element, find start of second (the first
  ;; argument of the function call) and indent under.
  (progn (forward-sexp 1)
         (parse-partial-sexp (point)
                             calculate-lisp-indent-last-sexp
                             0 t)))

Mã này kiểm tra các dấu ngoặc đơn mở của sexp đang được thụt lề. Nếu đó là sexp với nhiều sexp, nó sẽ kiểm tra tất cả. Nó trả về t nếu nó tìm thấy bất kỳ giới tính được trích dẫn hoặc trích dẫn.

(let* ((positions (elt state 9))
       (last (car (last positions)))
       (rest (nreverse (butlast positions)))
       (any-quoted-p nil)
       (point nil))
  (or
   (when-let (char last)
     (or (char-equal char ?')
         (char-equal char ?`)))
   (while (and rest (not any-quoted-p))
     (setq point (pop rest))
     (setq any-quoted-p
           (or
            (when-let (char point)
              (or (char-equal char ?')
                  (char-equal char ?`)))
            (save-excursion
              (goto-char (1+ point))
              (looking-at-p "\\(?:back\\)?quote[\t\n\f\s]+(")))))))

Tặng kem

Nếu bạn muốn bất kỳ danh sách nào bắt đầu bằng từ khóa được thụt vào dưới dạng dữ liệu ngay cả khi nó không được trích dẫn, hãy thêm danh sách này dưới dạng kiểm tra khác vào vị từ có điều kiện. Điều này có thể hữu ích cho các macro trong đó các giá trị không được trích dẫn để thuận tiện như trong defhydra .

(when-let (char-after (char-after (1+ containing-sexp)))
  (char-equal char-after ?:))

Ví dụ

Đoạn mã đầy đủ tôi đã đăng dưới đây hoạt động với trường hợp bạn đã đề cập và hơn thế nữa. Hãy thử nó!


;; Your example
`(:token ,token
  :token-quality ,quality)

;; Other cool examples
(quote (hi im gosu
        the best vayne player))

'(i am the phantom of
  the opera)

'((angel of music
   hide no longer))

(backquote (past the point
            no return
            ... the final chapter))

`(fee fi fo
  fum)

;; should indent it like a function.
(iamafunction arg1
              arg2
              arg3)

Để được giải thích sâu hơn về cách thức hoạt động của nó, hãy xem bài đăng của tôi trên reddit .

Đoạn mã đầy đủ

Đây là đoạn mã đầy đủ.

(advice-add #'calculate-lisp-indent :override #'void~calculate-lisp-indent)

(defun void~calculate-lisp-indent (&optional parse-start)
  "Add better indentation for quoted and backquoted lists."
  ;; This line because `calculate-lisp-indent-last-sexp` was defined with `defvar` 
  ;; with it's value ommited, marking it special and only defining it locally. So  
  ;; if you don't have this, you'll get a void variable error.
  (defvar calculate-lisp-indent-last-sexp)
  (save-excursion
    (beginning-of-line)
    (let ((indent-point (point))
          state
          ;; setting this to a number inhibits calling hook
          (desired-indent nil)
          (retry t)
          calculate-lisp-indent-last-sexp containing-sexp)
      (cond ((or (markerp parse-start) (integerp parse-start))
             (goto-char parse-start))
            ((null parse-start) (beginning-of-defun))
            (t (setq state parse-start)))
      (unless state
        ;; Find outermost containing sexp
        (while (< (point) indent-point)
          (setq state (parse-partial-sexp (point) indent-point 0))))
      ;; Find innermost containing sexp
      (while (and retry
                  state
                  (> (elt state 0) 0))
        (setq retry nil)
        (setq calculate-lisp-indent-last-sexp (elt state 2))
        (setq containing-sexp (elt state 1))
        ;; Position following last unclosed open.
        (goto-char (1+ containing-sexp))
        ;; Is there a complete sexp since then?
        (if (and calculate-lisp-indent-last-sexp
                 (> calculate-lisp-indent-last-sexp (point)))
            ;; Yes, but is there a containing sexp after that?
            (let ((peek (parse-partial-sexp calculate-lisp-indent-last-sexp
                                            indent-point 0)))
              (if (setq retry (car (cdr peek))) (setq state peek)))))
      (if retry
          nil
        ;; Innermost containing sexp found
        (goto-char (1+ containing-sexp))
        (if (not calculate-lisp-indent-last-sexp)
            ;; indent-point immediately follows open paren.
            ;; Don't call hook.
            (setq desired-indent (current-column))
          ;; Find the start of first element of containing sexp.
          (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
          (cond ((looking-at "\\s(")
                 ;; First element of containing sexp is a list.
                 ;; Indent under that list.
                 )
                ((> (save-excursion (forward-line 1) (point))
                    calculate-lisp-indent-last-sexp)
                 ;; This is the first line to start within the containing sexp.
                 ;; It's almost certainly a function call.
                 (if (or
                      ;; Containing sexp has nothing before this line
                      ;; except the first element. Indent under that element.
                      (= (point) calculate-lisp-indent-last-sexp)

                      ;; First sexp after `containing-sexp' is a keyword. This
                      ;; condition is more debatable. It's so that I can have
                      ;; unquoted plists in macros. It assumes that you won't
                      ;; make a function whose name is a keyword.
                      ;; (when-let (char-after (char-after (1+ containing-sexp)))
                      ;;   (char-equal char-after ?:))

                      ;; Check for quotes or backquotes around.
                      (let* ((positions (elt state 9))
                             (last (car (last positions)))
                             (rest (reverse (butlast positions)))
                             (any-quoted-p nil)
                             (point nil))
                        (or
                         (when-let (char (char-before last))
                           (or (char-equal char ?')
                               (char-equal char ?`)))
                         (progn
                           (while (and rest (not any-quoted-p))
                             (setq point (pop rest))
                             (setq any-quoted-p
                                   (or
                                    (when-let (char (char-before point))
                                      (or (char-equal char ?')
                                          (char-equal char ?`)))
                                    (save-excursion
                                      (goto-char (1+ point))
                                      (looking-at-p
                                       "\\(?:back\\)?quote[\t\n\f\s]+(")))))
                           any-quoted-p))))
                     ;; Containing sexp has nothing before this line
                     ;; except the first element.  Indent under that element.
                     nil
                   ;; Skip the first element, find start of second (the first
                   ;; argument of the function call) and indent under.
                   (progn (forward-sexp 1)
                          (parse-partial-sexp (point)
                                              calculate-lisp-indent-last-sexp
                                              0 t)))
                 (backward-prefix-chars))
                (t
                 ;; Indent beneath first sexp on same line as
                 ;; `calculate-lisp-indent-last-sexp'.  Again, it's
                 ;; almost certainly a function call.
                 (goto-char calculate-lisp-indent-last-sexp)
                 (beginning-of-line)
                 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp
                                     0 t)
                 (backward-prefix-chars)))))
      ;; Point is at the point to indent under unless we are inside a string.
      ;; Call indentation hook except when overridden by lisp-indent-offset
      ;; or if the desired indentation has already been computed.
      (let ((normal-indent (current-column)))
        (cond ((elt state 3)
               ;; Inside a string, don't change indentation.
               nil)
              ((and (integerp lisp-indent-offset) containing-sexp)
               ;; Indent by constant offset
               (goto-char containing-sexp)
               (+ (current-column) lisp-indent-offset))
              ;; in this case calculate-lisp-indent-last-sexp is not nil
              (calculate-lisp-indent-last-sexp
               (or
                ;; try to align the parameters of a known function
                (and lisp-indent-function
                     (not retry)
                     (funcall lisp-indent-function indent-point state))
                ;; If the function has no special alignment
                ;; or it does not apply to this argument,
                ;; try to align a constant-symbol under the last
                ;; preceding constant symbol, if there is such one of
                ;; the last 2 preceding symbols, in the previous
                ;; uncommented line.
                (and (save-excursion
                       (goto-char indent-point)
                       (skip-chars-forward " \t")
                       (looking-at ":"))
                     ;; The last sexp may not be at the indentation
                     ;; where it begins, so find that one, instead.
                     (save-excursion
                       (goto-char calculate-lisp-indent-last-sexp)
                       ;; Handle prefix characters and whitespace
                       ;; following an open paren.  (Bug#1012)
                       (backward-prefix-chars)
                       (while (not (or (looking-back "^[ \t]*\\|([ \t]+"
                                                     (line-beginning-position))
                                       (and containing-sexp
                                            (>= (1+ containing-sexp) (point)))))
                         (forward-sexp -1)
                         (backward-prefix-chars))
                       (setq calculate-lisp-indent-last-sexp (point)))
                     (> calculate-lisp-indent-last-sexp
                        (save-excursion
                          (goto-char (1+ containing-sexp))
                          (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
                          (point)))
                     (let ((parse-sexp-ignore-comments t)
                           indent)
                       (goto-char calculate-lisp-indent-last-sexp)
                       (or (and (looking-at ":")
                                (setq indent (current-column)))
                           (and (< (line-beginning-position)
                                   (prog2 (backward-sexp) (point)))
                                (looking-at ":")
                                (setq indent (current-column))))
                       indent))
                ;; another symbols or constants not preceded by a constant
                ;; as defined above.
                normal-indent))
              ;; in this case calculate-lisp-indent-last-sexp is nil
              (desired-indent)
              (t
               normal-indent))))))

Ghi chú cuối cùng

Điều đáng chú ý là câu hỏi này sẽ được khái quát hóa tốt hơn khi làm thế nào để ngăn chặn các emacs khỏi thụt lề danh sách trích dẫn và không trích dẫn dưới dạng hàm .


Cảm ơn bạn! Được viết tốt, rõ ràng và hữu ích.
GaryO

1

Đối với một giải pháp thay thế nhiều hơn cho câu trả lời của kaushalmodi, bạn có thể ghi đè lisp-indent-functiontương tự như những gì Mark H. Weaver đã làm scheme-indent-functionđể sửa lỗi căn chỉnh từ khóa trong Lược đồ Guile.

Tôi vừa sao chép mã từ http://netris.org/~mhw/scheme-indent-feft.el ; thay đổi duy nhất là thêm một condmệnh đề mới . Bạn có thể muốn lấy mã hiện tại lisp-indent-functionthay vì sử dụng chức năng này.

(Thật đáng tiếc khi các chức năng thụt lề không để lộ nhiều móc để đơn giản hóa các thay đổi nhỏ như thế này.)

(defun scheme-indent-function (indent-point state)
  "Scheme mode function for the value of the variable `lisp-indent-function'.
This behaves like the function `lisp-indent-function', except that:

i) it checks for a non-nil value of the property `scheme-indent-function'
\(or the deprecated `scheme-indent-hook'), rather than `lisp-indent-function'.

ii) if that property specifies a function, it is called with three
arguments (not two), the third argument being the default (i.e., current)
indentation."
  (let ((normal-indent (current-column)))
    (goto-char (1+ (elt state 1)))
    (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
    (if (and (elt state 2)
             (not (looking-at "\\sw\\|\\s_")))
        ;; car of form doesn't seem to be a symbol
        (progn
          (if (not (> (save-excursion (forward-line 1) (point))
                      calculate-lisp-indent-last-sexp))
              (progn (goto-char calculate-lisp-indent-last-sexp)
                     (beginning-of-line)
                     (parse-partial-sexp (point)
                     calculate-lisp-indent-last-sexp 0 t)))
          ;; Indent under the list or under the first sexp on the same
          ;; line as calculate-lisp-indent-last-sexp.  Note that first
          ;; thing on that line has to be complete sexp since we are
          ;; inside the innermost containing sexp.
          (backward-prefix-chars)
          (current-column))
      (let ((function (buffer-substring (point)
                    (progn (forward-sexp 1) (point))))
        method)
    (setq method (or (get (intern-soft function) 'scheme-indent-function)
             (get (intern-soft function) 'scheme-indent-hook)))
    (cond ((or (eq method 'defun)
           (and (null method)
            (> (length function) 3)
            (string-match "\\`def" function)))
           (lisp-indent-defform state indent-point))
              ;; This next cond clause is the only change -mhw
          ((and (null method)
                    (> (length function) 1)
                    ; The '#' in '#:' seems to get lost, not sure why
                    (string-match "\\`:" function))
               (let ((lisp-body-indent 1))
                 (lisp-indent-defform state indent-point)))
          ((integerp method)
           (lisp-indent-specform method state
                     indent-point normal-indent))
          (method
        (funcall method state indent-point normal-indent)))))))

Tại sao ghi đè lên nó và không sử dụng biến lisp-indent-function? Ngoài ra dường như không có chức năng emacs-lisp-indent-function.
Politza

Vâng, lisp-indent-functioncó chứa chức năng thụt đầu dòng theo mặc định. Gán cho biến này là giống hệt với ghi đè chức năng thụt lề mặc định cho chế độ emacs-lisp. (Bạn nói đúng, không có gì đặc biệt emacs-lisp-indent-function, chỉ là vậy lisp-indent-function.)
rekado

Nhưng nó ít hơn rất nhiều 'hacky'.
Politza

1

Bạn có thể ghi đè lisp-indent-functiontheo cách chứng minh trong tương lai bằng gói el-patch của tôi :

(el-patch-defun lisp-indent-function (indent-point state)
  "This function is the normal value of the variable `lisp-indent-function'.
The function `calculate-lisp-indent' calls this to determine
if the arguments of a Lisp function call should be indented specially.
INDENT-POINT is the position at which the line being indented begins.
Point is located at the point to indent under (for default indentation);
STATE is the `parse-partial-sexp' state for that position.
If the current line is in a call to a Lisp function that has a non-nil
property `lisp-indent-function' (or the deprecated `lisp-indent-hook'),
it specifies how to indent.  The property value can be:
* `defun', meaning indent `defun'-style
  (this is also the case if there is no property and the function
  has a name that begins with \"def\", and three or more arguments);
* an integer N, meaning indent the first N arguments specially
  (like ordinary function arguments), and then indent any further
  arguments like a body;
* a function to call that returns the indentation (or nil).
  `lisp-indent-function' calls this function with the same two arguments
  that it itself received.
This function returns either the indentation to use, or nil if the
Lisp function does not specify a special indentation."
  (el-patch-let (($cond (and (elt state 2)
                             (el-patch-wrap 1 1
                               (or (not (looking-at "\\sw\\|\\s_"))
                                   (looking-at ":")))))
                 ($then (progn
                          (if (not (> (save-excursion (forward-line 1) (point))
                                      calculate-lisp-indent-last-sexp))
                              (progn (goto-char calculate-lisp-indent-last-sexp)
                                     (beginning-of-line)
                                     (parse-partial-sexp (point)
                                                         calculate-lisp-indent-last-sexp 0 t)))
                          ;; Indent under the list or under the first sexp on the same
                          ;; line as calculate-lisp-indent-last-sexp.  Note that first
                          ;; thing on that line has to be complete sexp since we are
                          ;; inside the innermost containing sexp.
                          (backward-prefix-chars)
                          (current-column)))
                 ($else (let ((function (buffer-substring (point)
                                                          (progn (forward-sexp 1) (point))))
                              method)
                          (setq method (or (function-get (intern-soft function)
                                                         'lisp-indent-function)
                                           (get (intern-soft function) 'lisp-indent-hook)))
                          (cond ((or (eq method 'defun)
                                     (and (null method)
                                          (> (length function) 3)
                                          (string-match "\\`def" function)))
                                 (lisp-indent-defform state indent-point))
                                ((integerp method)
                                 (lisp-indent-specform method state
                                                       indent-point normal-indent))
                                (method
                                 (funcall method indent-point state))))))
    (let ((normal-indent (current-column))
          (el-patch-add
            (orig-point (point))))
      (goto-char (1+ (elt state 1)))
      (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
      (el-patch-swap
        (if $cond
            ;; car of form doesn't seem to be a symbol
            $then
          $else)
        (cond
         ;; car of form doesn't seem to be a symbol, or is a keyword
         ($cond $then)
         ((and (save-excursion
                 (goto-char indent-point)
                 (skip-syntax-forward " ")
                 (not (looking-at ":")))
               (save-excursion
                 (goto-char orig-point)
                 (looking-at ":")))
          (save-excursion
            (goto-char (+ 2 (elt state 1)))
            (current-column)))
         (t $else))))))

Điều này khắc phục vấn đề cho tôi; nhìn thấy nó trong bối cảnh .

Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.