mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-24 20:00:15 +10:00
feat: update patch and data (#2247)
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
diff --git a/extensions/terminal-suggest/src/completions/codium-insiders.ts b/extensions/terminal-suggest/src/completions/codium-insiders.ts
|
diff --git a/extensions/terminal-suggest/src/completions/codium-insiders.ts b/extensions/terminal-suggest/src/completions/codium-insiders.ts
|
||||||
new file mode 100644
|
new file mode 100644
|
||||||
index 00000000000..a5769b1a575
|
index 0000000..a5769b1
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/extensions/terminal-suggest/src/completions/codium-insiders.ts
|
+++ b/extensions/terminal-suggest/src/completions/codium-insiders.ts
|
||||||
@@ -0,0 +1,9 @@
|
@@ -0,0 +1,9 @@
|
||||||
@@ -15,7 +15,7 @@ index 00000000000..a5769b1a575
|
|||||||
+export default codiumInsidersCompletionSpec;
|
+export default codiumInsidersCompletionSpec;
|
||||||
diff --git a/extensions/terminal-suggest/src/completions/codium.ts b/extensions/terminal-suggest/src/completions/codium.ts
|
diff --git a/extensions/terminal-suggest/src/completions/codium.ts b/extensions/terminal-suggest/src/completions/codium.ts
|
||||||
new file mode 100644
|
new file mode 100644
|
||||||
index 00000000000..b1fa81231fd
|
index 0000000..b1fa812
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/extensions/terminal-suggest/src/completions/codium.ts
|
+++ b/extensions/terminal-suggest/src/completions/codium.ts
|
||||||
@@ -0,0 +1,9 @@
|
@@ -0,0 +1,9 @@
|
||||||
@@ -29,56 +29,16 @@ index 00000000000..b1fa81231fd
|
|||||||
+
|
+
|
||||||
+export default codiumCompletionSpec;
|
+export default codiumCompletionSpec;
|
||||||
diff --git a/extensions/terminal-suggest/src/terminalSuggestMain.ts b/extensions/terminal-suggest/src/terminalSuggestMain.ts
|
diff --git a/extensions/terminal-suggest/src/terminalSuggestMain.ts b/extensions/terminal-suggest/src/terminalSuggestMain.ts
|
||||||
index 3cd5854ca74..e0b7596b0b7 100644
|
index 3f181bc..34054ed 100644
|
||||||
--- a/extensions/terminal-suggest/src/terminalSuggestMain.ts
|
--- a/extensions/terminal-suggest/src/terminalSuggestMain.ts
|
||||||
+++ b/extensions/terminal-suggest/src/terminalSuggestMain.ts
|
+++ b/extensions/terminal-suggest/src/terminalSuggestMain.ts
|
||||||
@@ -10,6 +10,8 @@ import { upstreamSpecs } from './constants';
|
@@ -12,2 +12,4 @@ import codeCompletionSpec from './completions/code';
|
||||||
import codeCompletionSpec from './completions/code';
|
|
||||||
import cdSpec from './completions/cd';
|
|
||||||
import codeInsidersCompletionSpec from './completions/code-insiders';
|
import codeInsidersCompletionSpec from './completions/code-insiders';
|
||||||
+import codiumCompletionSpec from './completions/codium';
|
+import codiumCompletionSpec from './completions/codium';
|
||||||
+import codiumInsidersCompletionSpec from './completions/codium-insiders';
|
+import codiumInsidersCompletionSpec from './completions/codium-insiders';
|
||||||
import { osIsWindows } from './helpers/os';
|
import setLocationSpec from './completions/set-location';
|
||||||
import { isExecutable } from './helpers/executable';
|
@@ -52,2 +54,4 @@ export const availableSpecs: Fig.Spec[] = [
|
||||||
|
|
||||||
@@ -28,6 +30,8 @@ export const availableSpecs: Fig.Spec[] = [
|
|
||||||
cdSpec,
|
|
||||||
codeInsidersCompletionSpec,
|
|
||||||
codeCompletionSpec,
|
codeCompletionSpec,
|
||||||
+ codiumInsidersCompletionSpec,
|
+ codiumInsidersCompletionSpec,
|
||||||
+ codiumCompletionSpec,
|
+ codiumCompletionSpec,
|
||||||
];
|
setLocationSpec,
|
||||||
for (const spec of upstreamSpecs) {
|
|
||||||
availableSpecs.push(require(`./completions/upstream/${spec}`).default);
|
|
||||||
diff --git a/extensions/terminal-suggest/src/test/terminalSuggestMain.test.ts b/extensions/terminal-suggest/src/test/terminalSuggestMain.test.ts
|
|
||||||
index d72996b8f70..7c5fb26f925 100644
|
|
||||||
--- a/extensions/terminal-suggest/src/test/terminalSuggestMain.test.ts
|
|
||||||
+++ b/extensions/terminal-suggest/src/test/terminalSuggestMain.test.ts
|
|
||||||
@@ -10,6 +10,8 @@ import { asArray, getCompletionItemsFromSpecs } from '../terminalSuggestMain';
|
|
||||||
import cdSpec from '../completions/cd';
|
|
||||||
import codeCompletionSpec from '../completions/code';
|
|
||||||
import codeInsidersCompletionSpec from '../completions/code-insiders';
|
|
||||||
+import codiumCompletionSpec from '../completions/codium';
|
|
||||||
+import codiumInsidersCompletionSpec from '../completions/codium-insiders';
|
|
||||||
import type { Uri } from 'vscode';
|
|
||||||
import { basename } from 'path';
|
|
||||||
|
|
||||||
@@ -128,6 +130,18 @@ const testSpecs2: ISuiteSpec[] = [
|
|
||||||
completionSpecs: codeInsidersCompletionSpec,
|
|
||||||
availableCommands: 'code-insiders',
|
|
||||||
testSpecs: createCodeTestSpecs('code-insiders')
|
|
||||||
+ },
|
|
||||||
+ {
|
|
||||||
+ name: 'codium',
|
|
||||||
+ completionSpecs: codiumCompletionSpec,
|
|
||||||
+ availableCommands: 'codium',
|
|
||||||
+ testSpecs: createCodeTestSpecs('codium')
|
|
||||||
+ },
|
|
||||||
+ {
|
|
||||||
+ name: 'codium-insiders',
|
|
||||||
+ completionSpecs: codiumInsidersCompletionSpec,
|
|
||||||
+ availableCommands: 'codium-insiders',
|
|
||||||
+ testSpecs: createCodeTestSpecs('codium-insiders')
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
|
|||||||
24
product.json
24
product.json
@@ -205,14 +205,10 @@
|
|||||||
"treeViewMarkdownMessage"
|
"treeViewMarkdownMessage"
|
||||||
],
|
],
|
||||||
"GitHub.copilot": [
|
"GitHub.copilot": [
|
||||||
"inlineCompletionsAdditions",
|
"inlineCompletionsAdditions"
|
||||||
"interactive",
|
|
||||||
"terminalDataWriteEvent"
|
|
||||||
],
|
],
|
||||||
"GitHub.copilot-nightly": [
|
"GitHub.copilot-nightly": [
|
||||||
"inlineCompletionsAdditions",
|
"inlineCompletionsAdditions"
|
||||||
"interactive",
|
|
||||||
"terminalDataWriteEvent"
|
|
||||||
],
|
],
|
||||||
"GitHub.copilot-chat": [
|
"GitHub.copilot-chat": [
|
||||||
"interactive",
|
"interactive",
|
||||||
@@ -220,13 +216,13 @@
|
|||||||
"terminalExecuteCommandEvent",
|
"terminalExecuteCommandEvent",
|
||||||
"terminalSelection",
|
"terminalSelection",
|
||||||
"terminalQuickFixProvider",
|
"terminalQuickFixProvider",
|
||||||
"chatProvider",
|
|
||||||
"chatParticipantAdditions",
|
"chatParticipantAdditions",
|
||||||
"defaultChatParticipant",
|
"defaultChatParticipant",
|
||||||
"embeddings",
|
"embeddings",
|
||||||
|
"chatEditing",
|
||||||
|
"chatProvider",
|
||||||
"mappedEditsProvider",
|
"mappedEditsProvider",
|
||||||
"aiRelatedInformation",
|
"aiRelatedInformation",
|
||||||
"chatEditing",
|
|
||||||
"codeActionAI",
|
"codeActionAI",
|
||||||
"findTextInFiles",
|
"findTextInFiles",
|
||||||
"textSearchProvider",
|
"textSearchProvider",
|
||||||
@@ -242,9 +238,9 @@
|
|||||||
"chatReferenceDiagnostic",
|
"chatReferenceDiagnostic",
|
||||||
"extensionsAny",
|
"extensionsAny",
|
||||||
"authLearnMore",
|
"authLearnMore",
|
||||||
"chatReadonlyPromptReference",
|
|
||||||
"testObserver",
|
"testObserver",
|
||||||
"aiTextSearchProvider",
|
"aiTextSearchProvider",
|
||||||
|
"chatReadonlyPromptReference",
|
||||||
"documentFiltersExclusive",
|
"documentFiltersExclusive",
|
||||||
"chatParticipantPrivate",
|
"chatParticipantPrivate",
|
||||||
"contribDebugCreateConfiguration",
|
"contribDebugCreateConfiguration",
|
||||||
@@ -269,9 +265,6 @@
|
|||||||
"textSearchProvider",
|
"textSearchProvider",
|
||||||
"timeline"
|
"timeline"
|
||||||
],
|
],
|
||||||
"GitHub.copilot-nes": [
|
|
||||||
"inlineEdit"
|
|
||||||
],
|
|
||||||
"ms-python.gather": [
|
"ms-python.gather": [
|
||||||
"notebookCellExecutionState"
|
"notebookCellExecutionState"
|
||||||
],
|
],
|
||||||
@@ -317,6 +310,7 @@
|
|||||||
"terminalDataWriteEvent",
|
"terminalDataWriteEvent",
|
||||||
"chatParticipantAdditions"
|
"chatParticipantAdditions"
|
||||||
],
|
],
|
||||||
|
"vscjava.vscode-java-pack": [],
|
||||||
"ms-dotnettools.csdevkit": [
|
"ms-dotnettools.csdevkit": [
|
||||||
"inlineCompletionsAdditions"
|
"inlineCompletionsAdditions"
|
||||||
],
|
],
|
||||||
@@ -335,13 +329,13 @@
|
|||||||
"chatParticipantAdditions",
|
"chatParticipantAdditions",
|
||||||
"languageModelSystem"
|
"languageModelSystem"
|
||||||
],
|
],
|
||||||
|
"ms-toolsai.datawrangler": [],
|
||||||
|
"ms-vscode.vscode-commander": [],
|
||||||
|
"ms-vscode.vscode-websearchforcopilot": [],
|
||||||
"ms-vscode.vscode-copilot-vision": [
|
"ms-vscode.vscode-copilot-vision": [
|
||||||
"chatReferenceBinaryData",
|
"chatReferenceBinaryData",
|
||||||
"codeActionAI"
|
"codeActionAI"
|
||||||
],
|
],
|
||||||
"lramos15.model-playground": [
|
|
||||||
"chatProvider"
|
|
||||||
],
|
|
||||||
"ms-autodev.vscode-autodev": [
|
"ms-autodev.vscode-autodev": [
|
||||||
"chatParticipantAdditions"
|
"chatParticipantAdditions"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"tag": "1.97.2",
|
"tag": "1.98.0",
|
||||||
"commit": "e54c774e0add60467559eb0d1e229c6452cf8447"
|
"commit": "6609ac3d66f4eade5cf376d1cb76f13985724bcb"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user