]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't indent template_string contents (bug#61503)
authorTheodor Thornhill <theo@thornhill.no>
Tue, 14 Feb 2023 19:53:55 +0000 (20:53 +0100)
committerTheodor Thornhill <theo@thornhill.no>
Tue, 14 Feb 2023 19:53:55 +0000 (20:53 +0100)
* lisp/progmodes/js.el (js--treesit-indent-rules): Add new rule.
* lisp/progmodes/typescript-ts-mode.el
(typescript-ts-mode--indent-rules): Add new rule.

lisp/progmodes/js.el
lisp/progmodes/typescript-ts-mode.el

index 05d69c314bb40933cf75cb78edb9e344b45696bf..1f08f09935b4a00ef6318991eaa5a7bea8009d9d 100644 (file)
@@ -3442,6 +3442,7 @@ This function is intended for use in `after-change-functions'."
        ((parent-is "arguments") parent-bol js-indent-level)
        ((parent-is "array") parent-bol js-indent-level)
        ((parent-is "formal_parameters") parent-bol js-indent-level)
+       ((parent-is "template_string") no-indent) ; Don't indent the string contents.
        ((parent-is "template_substitution") parent-bol js-indent-level)
        ((parent-is "object_pattern") parent-bol js-indent-level)
        ((parent-is "object") parent-bol js-indent-level)
index 561b90deedd362f434d63e3ba0426da58e3f60d6..88a1ff3e2029c72f3010075a2bf7f9a9663a320b 100644 (file)
@@ -86,6 +86,7 @@ Argument LANGUAGE is either `typescript' or `tsx'."
      ((parent-is "arguments") parent-bol typescript-ts-mode-indent-offset)
      ((parent-is "array") parent-bol typescript-ts-mode-indent-offset)
      ((parent-is "formal_parameters") parent-bol typescript-ts-mode-indent-offset)
+     ((parent-is "template_string") no-indent) ; Don't indent the string contents.
      ((parent-is "template_substitution") parent-bol typescript-ts-mode-indent-offset)
      ((parent-is "object_pattern") parent-bol typescript-ts-mode-indent-offset)
      ((parent-is "object") parent-bol typescript-ts-mode-indent-offset)