mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-24 11:47:43 +00:00
123 lines
3.2 KiB
JSON
123 lines
3.2 KiB
JSON
{
|
|
"name": "prompt",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.20.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "prompt",
|
|
"aliases": [
|
|
"Prompt",
|
|
"prompt"
|
|
],
|
|
"extensions": [
|
|
".prompt.md",
|
|
"copilot-instructions.md"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
},
|
|
{
|
|
"id": "instructions",
|
|
"aliases": [
|
|
"Instructions",
|
|
"instructions"
|
|
],
|
|
"extensions": [
|
|
".instructions.md",
|
|
"copilot-instructions.md"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
},
|
|
{
|
|
"id": "chatmode",
|
|
"aliases": [
|
|
"Chat Mode",
|
|
"chat mode"
|
|
],
|
|
"extensions": [
|
|
".chatmode.md"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "prompt",
|
|
"path": "./syntaxes/prompt.tmLanguage.json",
|
|
"scopeName": "text.html.markdown.prompt",
|
|
"unbalancedBracketScopes": [
|
|
"markup.underline.link.markdown",
|
|
"punctuation.definition.list.begin.markdown"
|
|
]
|
|
},
|
|
{
|
|
"language": "instructions",
|
|
"path": "./syntaxes/prompt.tmLanguage.json",
|
|
"scopeName": "text.html.markdown.prompt",
|
|
"unbalancedBracketScopes": [
|
|
"markup.underline.link.markdown",
|
|
"punctuation.definition.list.begin.markdown"
|
|
]
|
|
},
|
|
{
|
|
"language": "chatmode",
|
|
"path": "./syntaxes/prompt.tmLanguage.json",
|
|
"scopeName": "text.html.markdown.prompt",
|
|
"unbalancedBracketScopes": [
|
|
"markup.underline.link.markdown",
|
|
"punctuation.definition.list.begin.markdown"
|
|
]
|
|
}
|
|
],
|
|
"configurationDefaults": {
|
|
"[prompt]": {
|
|
"editor.unicodeHighlight.ambiguousCharacters": false,
|
|
"editor.unicodeHighlight.invisibleCharacters": false,
|
|
"diffEditor.ignoreTrimWhitespace": false,
|
|
"editor.wordWrap": "on",
|
|
"editor.quickSuggestions": {
|
|
"comments": "off",
|
|
"strings": "off",
|
|
"other": "off"
|
|
}
|
|
},
|
|
"[instructions]": {
|
|
"editor.unicodeHighlight.ambiguousCharacters": false,
|
|
"editor.unicodeHighlight.invisibleCharacters": false,
|
|
"diffEditor.ignoreTrimWhitespace": false,
|
|
"editor.wordWrap": "on",
|
|
"editor.quickSuggestions": {
|
|
"comments": "off",
|
|
"strings": "off",
|
|
"other": "off"
|
|
}
|
|
},
|
|
"[chatmode]": {
|
|
"editor.unicodeHighlight.ambiguousCharacters": false,
|
|
"editor.unicodeHighlight.invisibleCharacters": false,
|
|
"diffEditor.ignoreTrimWhitespace": false,
|
|
"editor.wordWrap": "on",
|
|
"editor.quickSuggestions": {
|
|
"comments": "off",
|
|
"strings": "off",
|
|
"other": "off"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"scripts": {},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|