]> git.eshelyaron.com Git - emacs.git/commitdiff
; typescript-ts-mode-multivar-indent-style: Fix use of apostrophes.
authorSean Whitton <spwhitton@spwhitton.name>
Sat, 26 Apr 2025 03:43:49 +0000 (11:43 +0800)
committerEshel Yaron <me@eshelyaron.com>
Sat, 26 Apr 2025 17:30:18 +0000 (19:30 +0200)
(cherry picked from commit 5a043bf3dfa42a6d9b8376687a2dc9e5fb71fe4a)

lisp/progmodes/typescript-ts-mode.el

index aaeedae86c42143ed9cf7ba3cddbf25a8fdc0ac1..68abcbcb6a514e462084129aed02b959edaaaddd 100644 (file)
 
 If the value is `align', align each declaration:
 
-    const foo = 'bar',
-          car = 'cdr',
-          stop = 'start';
+    const foo = \\='bar\\=',
+          car = \\='cdr\\=',
+          stop = \\='start\\=';
 
 If the value is `indent', indent subsequent declarations by one indent
 level:
 
-   const foo = 'bar',
-     car = 'cdr',
-     stop = 'start';
+   const foo = \\='bar\\=',
+     car = \\='cdr\\=',
+     stop = \\='start\\=';
 
 For changes to this variable to take effect, restart the major mode."
   :version "31.1"