fix: 修复关闭SSH终端标签页时会话状态未更新的问题

This commit is contained in:
2026-04-18 02:35:38 +08:00
commit 6e2e2f9387
43467 changed files with 5489040 additions and 0 deletions
@@ -0,0 +1 @@
export {}
@@ -0,0 +1,11 @@
import { registerLanguage } from '../_.contribution.js';
registerLanguage({
id: "javascript",
extensions: [".js", ".es6", ".jsx", ".mjs", ".cjs"],
firstLine: "^#!.*\\bnode",
filenames: ["jakefile"],
aliases: ["JavaScript", "javascript", "js"],
mimetypes: ["text/javascript"],
loader: () => import('./javascript.js')
});
@@ -0,0 +1,70 @@
import { conf as conf$1, language as language$1 } from '../typescript/typescript.js';
const conf = conf$1;
const language = {
// Set defaultToken to invalid to see what you do not tokenize yet
defaultToken: "invalid",
tokenPostfix: ".js",
keywords: [
"break",
"case",
"catch",
"class",
"continue",
"const",
"constructor",
"debugger",
"default",
"delete",
"do",
"else",
"export",
"extends",
"false",
"finally",
"for",
"from",
"function",
"get",
"if",
"import",
"in",
"instanceof",
"let",
"new",
"null",
"return",
"set",
"static",
"super",
"switch",
"symbol",
"this",
"throw",
"true",
"try",
"typeof",
"undefined",
"var",
"void",
"while",
"with",
"yield",
"async",
"await",
"of"
],
typeKeywords: [],
operators: language$1.operators,
symbols: language$1.symbols,
escapes: language$1.escapes,
digits: language$1.digits,
octaldigits: language$1.octaldigits,
binarydigits: language$1.binarydigits,
hexdigits: language$1.hexdigits,
regexpctl: language$1.regexpctl,
regexpesc: language$1.regexpesc,
tokenizer: language$1.tokenizer
};
export { conf, language };