From 808b649e6d2a8b0ef35d458d647bbb087060ee78 Mon Sep 17 00:00:00 2001 From: P1xel1ze <170705439+P1xel1ze@users.noreply.github.com> Date: Fri, 24 Oct 2025 15:28:39 +1100 Subject: [PATCH] Add 'jsonl' to languageIcons Added `'jsonl',` to /src/core/icons/languageIcons.ts so that it shows the JSON icon instead of the generic file icon when creating a new JSONL file and so it shows up in the Select Language box Signed-off-by: P1xel1ze <170705439+P1xel1ze@users.noreply.github.com> --- src/core/icons/languageIcons.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/icons/languageIcons.ts b/src/core/icons/languageIcons.ts index 6d6ab54e99..d7707f5e2d 100644 --- a/src/core/icons/languageIcons.ts +++ b/src/core/icons/languageIcons.ts @@ -21,7 +21,7 @@ export const languageIcons: LanguageIcon[] = [ }, { name: 'toml', light: true, ids: ['toml'] }, { name: 'diff', ids: ['diff'] }, - { name: 'json', ids: ['json', 'jsonc', 'json5'] }, + { name: 'json', ids: ['json', 'jsonl', 'jsonc', 'json5'] }, { name: 'blink', ids: ['blink'] }, { name: 'java', ids: ['java'] }, { name: 'razor', ids: ['razor', 'aspnetcorerazor'] },