कीवर्ड्स को कैसे इंडेंट करें?


17

संभवतः क्लॉजुर से प्रभावित, मैं अक्सर डेटा-संरचनाओं के रूप में संपत्ति सूचियों का उपयोग करता हूं। Emacs ज्यादातर समय उन्हें इस तरह का संकेत देता है,

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

जबकि यह वही है जो मैं पसंद करूंगा

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

तो, मुझे आश्चर्य है, अगर किसी ने पहले से ही इस से निपट लिया है?


3
सूची आइटम का व्यवहार हार्डकोड किया गया है, इसलिए आपको यहां प्रदर्शन के रूप में फ़ंक्शन को बदलना होगा ।
वामासा

बहुत अच्छा धन्यवाद। लेकिन इसे फिर से परिभाषित क्यों करें, अगर इसके लिए एक चर है?
पॉलिट्जा

@wasasa मुझे लगता है कि मैं उस पर स्विच कर सकता हूँ .. बस उस फंक्शन को फिर से नाम देना Fuco1/lisp-indent-functionऔर करना(add-hook 'emacs-lisp-mode-hook (lambda () (setq-local lisp-indent-function #'Fuco1/lisp-indent-function)))
कौशल मोदी

जवाबों:


4

यह lisp-indent-functionemacs- लिस्प मोड के लिए बदलकर प्राप्त किया जा सकता है:

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

से lisp-mode.elEmacs स्रोत में,

 (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)

विकल्प

जैसा कि @wasamasa ने प्रश्न के लिए एक टिप्पणी में उल्लेख किया है, @ Fuco1 (github.com पर) ने कीवर्ड के इंडेंटेशन (साथ शुरू ) को ठीक करने के लिए डिफ़ॉल्टlisp-indent-function को संशोधित किया है:

Emacs ने lisp-indent-functionउपयोगकर्ता को यह चुनने के लिए चर प्रदान किया है कि लिस्प मोड में इंडेंटेशन के लिए किस फ़ंक्शन का उपयोग किया जाए।

मूल फ़ंक्शन परिभाषा को ओवरराइड करने के बजाय, हम अपना स्वयं का फ़ंक्शन बना सकते हैं और उपरोक्त फ़ंक्शन को उस फ़ंक्शन नाम से असाइन कर सकते हैं।

इस उदाहरण में,

  • Fuco1 modded फ़ंक्शन को Fuco1/lisp-indent-functionअपने emacs सेटअप में कुछ इस तरह सहेजें
  • इंडेंटेशन के लिए उस फ़ंक्शन का उपयोग करें emacs-lisp-mode:
(add-hook 'emacs-lisp-mode-hook
          (lambda () (setq-local lisp-indent-function #'Fuco1/lisp-indent-function)))

संदर्भ

मॉड्यूल्ड फ़ंक्शन को इवेंट में नीचे चिपकाया जाता है, जिसे जीथब के लिए संदर्भित स्रोत खो जाता है।

;; 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))))))))

क्या किसी अन्य भाषा के लिए संपूर्ण इंडेंट फ़ंक्शन को बदलना थोड़ा चरम नहीं है? I Guile मेरे पास एक ही मुद्दा है जहाँ #: खोजशब्दों को उस तरह से संरेखित नहीं किया जाता है जिसकी मैं अपेक्षा करता हूँ, फिर भी मैं सामान्य लिस्प के लिए बने Guile इंडेंट फ़ंक्शन को प्रतिस्थापित नहीं करूँगा।
13:

1
@ ट्रेकाडो मैं सहमत हूं। लेकिन यह एक विशेष मामला लगता है। मैं खोजशब्दों की एक ही जलन का सामना कर रहा था जो कि संरेखित नहीं हो रही थी (हाइड्रा परिभाषाओं में) और वहाँ से समाधान के लिए गुगली कर रही थी। मैंने इस सुझाव को emacswiki से समाप्त करने की कोशिश की और जो अब लगभग एक महीने से मेरे emacs config का हिस्सा है । मैं भी खोजशब्दों को संरेखित करने के लिए एक साफ कार्यान्वयन देखना चाहूंगा lisp-indent-function
कौशल मोदी

दिलचस्प ... यह भी आवश्यक (setq lisp-backquote-indentation nil)सूची (मूल प्रश्न के रूप में) के लिए आवश्यक है।
पॉलिट्जा

@politza क्षमा करें, जल्दी-जल्दी मैं उन बैकक्वाटरों को मार्कडाउन में कोड ब्लॉक के रूप में टेक्स्ट को प्रारूपित करने के सिंटैक्स के रूप में गलत बताता हूं।
कौशल मोदी

2

गणना करने के लिए परिचय-लिस्प-इंडेंट

एक बेहतर समाधान फ़ंक्शन को ओवरराइड करना है calculate-lisp-indent। संक्षेप में, calculate-lisp-indentएक फ़ंक्शन है जो कॉलम को लौटाता है, जिस बिंदु पर एक पंक्ति को इंडेंट किया जाना चाहिए। यह फ़ंक्शन है जो सूचित करता है lisp-indent-functionकि प्रत्येक पंक्ति को कितना इंडेंट किया जाना चाहिए। ( अधिक जानकारी के लिए reddit पर मेरी पोस्ट भी देखें)।

अन्य उत्तरों की तुलना

फ़ूको 1 के संशोधित फ़ंक्शन का उपयोग करने पर इस उत्तर का लाभ यह है कि (1) यह समस्या की जड़ को ठीक करता है जो calculate-lisp-indentगलत इंडेंटेशन द्वारा वापस आने के बाद सिर्फ सफाई करने के बजाय झूठ बोलता है calculate-lisp-indent(2) यह उद्धृत की गई और बैकलॉग सूचियों (और) के लिए सामान्यीकृत करता है काम करता है कि क्या वे स्पष्ट रूप से उद्धृत किए जाते हैं / या ( 'और) के साथ। यह मनमाने ढंग से नेस्टेड कोट्स और बैकक्वाट्स के साथ भी काम करता है।

इस उत्तर को फंक्शन के lisp-indent-functionसाथ बदलने का फायदा यह common-lisp-indent-functionहै कि इसमें अन्य अनिवार्य इंडेंटेशन को गड़बड़ाने का साइड इफेक्ट नहीं है। लिस्प और आम-लिस्प अलग-अलग तरह से इंडेंट किए जाते हैं।

यह काम किस प्रकार करता है

यह सशर्त (इन calculate-lisp-indent) वह है जो यह तय करता है कि सेक्सपेंट एक फ़ंक्शन की तरह इंडेंट है या नहीं। यह एक और क्लॉज है जो एक फंक्शन की तरह इंडेंट होता है। यदि खण्ड है, तो यह सामान्य रूप से (वर्तमान तत्व के तहत) इंडेंट होता है। कार्यों के बजाय डेटा के रूप में सूचीबद्ध सूचियों को इंडेंट करने के लिए, हमें उन मामलों के लिए अधिक चेक जोड़ने की आवश्यकता है जहां सूची सशर्त विधेय में उद्धृत की गई है।

(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)))

यह कोड उस लिंग के खुले कोष्ठक की जाँच करता है जिसे इंडेंट किया जा रहा है। यदि यह कई सेक्सप में sexp है तो यह उन सभी की जाँच करता है। अगर यह किसी उद्धृत या बैकक्ओटेड सेक्सप्स पाता है तो यह टी रिटर्न करता है।

(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]+(")))))))

बक्शीश

यदि आप चाहते हैं कि कोई भी सूची जो किसी कीवर्ड के साथ शुरू होती है, भले ही वह अनक्वॉटेड हो तो भी डेटा के रूप में इंडेंट किया जा सकता है, इसे सशर्त विधेय के दूसरे चेक के रूप में जोड़ें। यह मैक्रोज़ के लिए उपयोगी हो सकता है जिसमें पौधों को सुविधा के लिए उद्धृत नहीं किया जाता है जैसे कि डिहाइड्राइड

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

उदाहरण

पूर्ण कोड स्निपेट मैंने नीचे पोस्ट किए हैं उस मामले के साथ काम करता है जिसका आपने उल्लेख किया है और अधिक। कृपया इसे आज़माएं!


;; 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)

यह कैसे काम करता है, इसकी अधिक गहन व्याख्या के लिए, मेरे पोस्ट को reddit पर देखें ।

पूर्ण कोड स्निपेट

यहाँ पूर्ण कोड स्निपेट है।

(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))))))

अंतिम नोट्स

यह ध्यान देने योग्य है कि इस सवाल को बेहतर सामान्यीकृत किया जाएगा कि कार्यों के दौरान इंडेंट किए गए उद्धरणों और अनकोटेड सूचियों से emacs को कैसे रोकें


धन्यवाद! अच्छी तरह से लिखा, स्पष्ट और सहायक।
गैरीओ

1

कौशलमोडी के जवाब के एक बहुत ही हैकर विकल्प के लिए आप lisp-indent-functionमार्क एच। वीवर ने गुइल scheme-indent-functionस्कीम में कीवर्ड्स के संरेखण को ठीक करने के लिए किए गए समान को ओवरराइट कर सकते हैं ।

मैंने बस http://netris.org/~mhw/scheme-indent-function.el से कोड कॉपी किया ; एकमात्र परिवर्तन एक नया condखंड जोड़ना है । आप lisp-indent-functionइस फ़ंक्शन का उपयोग करने के बजाय वर्तमान कोड लेना चाह सकते हैं ।

(यह अफ़सोस की बात है कि इंडेंट फ़ंक्शंस इस तरह के मामूली बदलावों को सरल बनाने के लिए अधिक हुक का खुलासा नहीं करते हैं।)

(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)))))))

इसे क्यों अधिलेखित करें और चर का उपयोग न करें lisp-indent-function? इसके अलावा वहाँ एक समारोह नहीं लगता है emacs-lisp-indent-function
राजनेता

ठीक है, lisp-indent-functionडिफ़ॉल्ट रूप से इंडेंटेशन फ़ंक्शन होता है। इस चर को असाइन करना emacs-lisp मोड के लिए डिफ़ॉल्ट इंडेंटेशन फ़ंक्शन को अधिलेखित करने के समान है। (आप सही हैं, कोई विशेष नहीं है emacs-lisp-indent-function, यह सिर्फ है lisp-indent-function।)
रेकाडो

लेकिन यह बहुत कम `हैकी 'है।
15-13 पर राजनेता

1

आप lisp-indent-functionमेरे पैकेज एल-पैच का उपयोग करके भविष्य के सबूत के तरीके से ओवरराइड कर सकते हैं :

(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))))))

यह मेरे लिए समस्या को ठीक करता है; इसे संदर्भ में देखें

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.