]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(filetype): don't detect string interpolation as angular
authorChristian Brabandt <cb@256bit.org>
Sat, 11 Jan 2025 08:19:12 +0000 (09:19 +0100)
committerChristian Brabandt <cb@256bit.org>
Sat, 11 Jan 2025 08:20:55 +0000 (09:20 +0100)
fixes: #16375

Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/autoload/dist/ft.vim

index f1e6ee272bbb626d8127b4b8cad6a63cdb86654f..47b2fede1770861fdc9d73ff71252c0ee221ef50 100644 (file)
@@ -3,7 +3,7 @@ vim9script
 # Vim functions for file type detection
 #
 # Maintainer:          The Vim Project <https://github.com/vim/vim>
-# Last Change:         2025 Jan 08
+# Last Change:         2025 Jan 11
 # Former Maintainer:   Bram Moolenaar <Bram@vim.org>
 
 # These functions are moved here from runtime/filetype.vim to make startup
@@ -437,7 +437,7 @@ export def FThtml()
 
   while n < 40 && n <= line("$")
     # Check for Angular
-    if getline(n) =~ '@\(if\|for\|defer\|switch\)\|\*\(ngIf\|ngFor\|ngSwitch\|ngTemplateOutlet\)\|ng-template\|ng-content\|{{.*}}'
+    if getline(n) =~ '@\(if\|for\|defer\|switch\)\|\*\(ngIf\|ngFor\|ngSwitch\|ngTemplateOutlet\)\|ng-template\|ng-content'
       setf htmlangular
       return
     endif