vim-patch:9.1.1620: filetype: composer.lock and symfony.lock files not recognized (#35291)

Problem:  filetype: composer.lock and symfony.lock files not recognized
Solution: Detect composer.lock and symfony.lock files as json filetype
          (Dietrich Moerman)

closes: vim/vim#17945

4fca92faa2
This commit is contained in:
Dietrich Moerman
2025-08-10 15:42:57 +02:00
committed by GitHub
parent 9d85f086d9
commit 47e3aecb78
2 changed files with 3 additions and 1 deletions

View File

@@ -1679,6 +1679,8 @@ local filename = {
['deno.lock'] = 'json',
['flake.lock'] = 'json',
['.swcrc'] = 'json',
['composer.lock'] = 'json',
['symfony.lock'] = 'json',
['.babelrc'] = 'jsonc',
['.eslintrc'] = 'jsonc',
['.hintrc'] = 'jsonc',