]> git.eshelyaron.com Git - emacs.git/commitdiff
typescript-ts-mode: Support indentation for conditionals without braces
authorNoah Peart <noah.v.peart@gmail.com>
Tue, 21 Nov 2023 13:59:48 +0000 (15:59 +0200)
committerDmitry Gutov <dmitry@gutov.dev>
Tue, 21 Nov 2023 14:26:54 +0000 (16:26 +0200)
* lisp/progmodes/typescript-ts-mode.el
(typescript-ts-mode--indent-rules): Support indentation for
conditionals without braces (bug#67031).

* test/lisp/progmodes/typescript-ts-mode-resources/indent.erts
(Statement indentation without braces): New test.

lisp/progmodes/typescript-ts-mode.el
test/lisp/progmodes/typescript-ts-mode-resources/indent.erts

index ec220ab8d034a192050c06dca4f08553ea26bfd2..4e039abd236273059cd89710afd3ad6a1fb9a659 100644 (file)
@@ -124,6 +124,11 @@ Argument LANGUAGE is either `typescript' or `tsx'."
      ((parent-is "arrow_function") parent-bol typescript-ts-mode-indent-offset)
      ((parent-is "parenthesized_expression") parent-bol typescript-ts-mode-indent-offset)
      ((parent-is "binary_expression") parent-bol typescript-ts-mode-indent-offset)
+     ((match "while" "do_statement") parent-bol 0)
+     ((match "else" "if_statement") parent-bol 0)
+     ((parent-is ,(rx (or (seq (or "if" "for" "for_in" "while" "do") "_statement")
+                          "else_clause")))
+      parent-bol typescript-ts-mode-indent-offset)
 
      ,@(when (eq language 'tsx)
         (append (tsx-ts-mode--indent-compatibility-b893426)
index 146ee76574e6cb1627af42a6113352ebe942c82a..20f423259b42972c49b9f1b3f4af815c77093f1e 100644 (file)
@@ -23,6 +23,28 @@ const foo = () => {
 }
 =-=-=
 
+Name: Statement indentation without braces
+
+=-=
+const foo = () => {
+  if (true)
+    console.log("if_statement");
+  else if (false)
+    console.log("if_statement");
+  else
+    console.log("else_clause");
+  for (let i = 0; i < 1; i++)
+    console.log("for_statement");
+  for (let i of [true])
+    console.log("for_in_statement");
+  while (false)
+    console.log("while_statement");
+  do
+    console.log("do_statement");
+  while (false)
+};
+=-=-=
+
 Code:
   (lambda ()
     (setq indent-tabs-mode nil)