কীভাবে কী কীভাবে কীভাবে সংযুক্ত করা যায়?


17

সম্ভবত ক্লোজুরে দ্বারা প্রভাবিত, আমি প্রায়শই ডেটা স্ট্রাকচার হিসাবে সম্পত্তি তালিকাগুলি ব্যবহার করি। এ্যাম্যাকস বেশিরভাগ সময় এগুলি এগুলি প্রবেশ করে,

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

যদিও এটি আমি পছন্দ করি

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

সুতরাং, আমি অবাক, কেউ যদি ইতিমধ্যে এটি মোকাবেলা করেছে?


3
তালিকার আইটেমগুলির আচরণ কঠোরভাবে কোড করা হয়েছে, সুতরাং আপনাকে এখানে প্রদর্শিত হিসাবে ফাংশনটি প্রতিস্থাপন করতে হবে ।
ওসামাস

অনেক ভাল ধন্যবাদ. তবে কেন এটির নতুন সংজ্ঞা দেওয়া হবে, যদি এর জন্য কোনও পরিবর্তনশীল থাকে?
রাজনীতি

@ ওসামাসা আমি মনে করি আমি সেদিকেই যেতে পারি .. কেবলমাত্র সেই ফাংশনটির নতুন নামকরণ করুন Fuco1/lisp-indent-functionএবং করুন(add-hook 'emacs-lisp-mode-hook (lambda () (setq-local lisp-indent-function #'Fuco1/lisp-indent-function)))
দক্ষ মোদী

উত্তর:


4

এটি lisp-indent-functionইমাস-লিস্প মোডের জন্য পরিবর্তন করে অর্জন করা যেতে পারে :

(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 কীওয়ার্ড খাঁজ ফিক্স (দিয়ে শুরু :)।

lisp-indent-functionইমাস্যাকগুলি লিস্প মোডে ইনডেন্টেশনের জন্য কোন ফাংশনটি ব্যবহার করতে হবে তা চয়ন করার জন্য ব্যবহারকারীকে ভেরিয়েবল সরবরাহ করেছে ।

আসল ফাংশন সংজ্ঞাটি ওভাররাইড করার পরিবর্তে আমরা আমাদের নিজস্ব ফাংশন তৈরি করতে পারি এবং উপরের ভেরিয়েবলটিকে সেই ফাংশনটির নামে বরাদ্দ করতে পারি।

এই উদাহরণে,

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

অন্য ভাষার জন্য এটির সাথে সম্পূর্ণ ইনডেন্ট ফাংশনটি পরিবর্তন করা কি চূড়ান্ত নয়? আই গিলি আমার একই সমস্যা আছে যেখানে #: কীওয়ার্ডগুলি আমার প্রত্যাশা অনুযায়ী প্রান্তিক নয়, তবুও আমি কমন লিস্পের জন্য তৈরি গিলি ইনডেন্ট ফাংশনটি প্রতিস্থাপন করব না।
রেকাডো

1
@ রেকাডো আমি একমত তবে এটি একটি বিশেষ ক্ষেত্রে বলে মনে হচ্ছে। আমি কীওয়ার্ডগুলি একত্রিত না হওয়ার একই জ্বলনের মুখোমুখি হয়েছি (হাইড্রা সংজ্ঞায়) এবং সেখানে সমাধানের জন্য গুগল করছি ling আমি ইমাসউইকি থেকে এই পরামর্শটি ব্যবহার করে শেষ করেছি এবং এটি প্রায় একমাস ধরে আমার ইমাস কনফিগারেশনের অংশ হয়ে দাঁড়িয়েছে। আমি কীওয়ার্ডগুলিকে সারিবদ্ধ করার জন্য একটি পরিষ্কার বাস্তবায়ন দেখতে চাই lisp-indent-function
দক্ষ মোদী

আকর্ষণীয় ... (setq lisp-backquote-indentation nil)ব্যাককোটেড তালিকাগুলির জন্যও এটির প্রয়োজন (মূল প্রশ্নের মতো)।
রাজনীতি

@ পোলিটজা দুঃখিত, তাড়াতাড়ি আমি চিহ্নগুলিতে কোড ব্লক হিসাবে পাঠ্যকে ফর্ম্যাট করতে সিনট্যাক্স হিসাবে এই ব্যাককোটগুলি ভুল লিখেছি।
দক্ষ মোদী

2

ইন্ট্রো গণনা-লিস্প-ইনডেন্ট

একটি আরও ভাল সমাধান ফাংশন ওভাররাইড করা হয় calculate-lisp-indent। সংক্ষেপে, calculate-lisp-indentএকটি ফাংশন যা কলামটি দেয় যেখানে বিন্দুতে একটি লাইন ইন্টেন্ট করা উচিত। এই ফাংশনটি হ'ল lisp-indent-functionপ্রতিটি লাইনে কতটা ইনডেন্ট হওয়া উচিত। ( আরও তথ্যের জন্য রেডডিটে আমার পোস্টও দেখুন)।

অন্যান্য উত্তরগুলির সাথে তুলনা

এই উত্তরটির ফলে ফুকো 1 এর পরিবর্তিত ফাংশনটি ব্যবহার করার ফলে যে সুবিধাটি রয়েছে তা হ'ল (1) এটি সমস্যার মূলটি ঠিক করে যা calculate-lisp-indentভুল ইনডেন্টেশন calculate-lisp-indent(2) দ্বারা ফিরিয়ে দেওয়া (2) দ্বারা উদ্ধৃত এবং ব্যাককোটিড তালিকাগুলির দ্বারা জেনারেট করে (এবং এটি) সেগুলি স্পষ্টভাবে উদ্ধৃত হয়েছে / ব্যাককোট হয়েছে বা 'এবং works ) এর সাথে কাজ করে। এটি ইচ্ছামত নেস্ট করা কোট এবং ব্যাককোটগুলি নিয়েও কাজ করে।

এই উত্তরের 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)))

এই কোডটি সেক্সপের খোলা বন্ধনী যাচাই করা হচ্ছে তা পরীক্ষা করে। যদি এটি একাধিক সেক্সপ এর সাথে যৌন হয় তবে এটি তাদের সমস্তটি পরীক্ষা করে। এটি যদি কোনও উদ্ধৃত বা ব্যাককোটাযুক্ত সেক্সপ্স পায় তবে এটি টি ফিরে আসে।

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

এটি কীভাবে কাজ করে তার আরও গভীরতার জন্য, আমার পোস্টটি রেডডিতে দেখুন

সম্পূর্ণ কোড স্নিপেট

এখানে পূর্ণ কোড স্নিপেট।

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

চূড়ান্ত নোটস

এটি লক্ষণীয় যে এই প্রশ্নটি আরও কার্যকর করা হবে যে কীভাবে ইম্যাক্সকে ফাংশন হিসাবে উদ্ধৃত ও উদ্ধৃত তালিকা থেকে ইনডেন্টিং করা বন্ধ করা যায়


ধন্যবাদ! সু-লিখিত, পরিষ্কার এবং সহায়ক।
গ্যারিও

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-indent-function, এটি ঠিক lisp-indent-function))
23:15

তবে এটি 'হ্যাকি' অনেক কম।
রাজনীতি

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

এটি আমার জন্য সমস্যার সমাধান করে; প্রসঙ্গে দেখুন

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.