1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
{
"name": "baba-yaga",
"displayName": "Baba Yaga",
"description": "Language support for Baba Yaga programming language",
"version": "1.1.1",
"publisher": "baba-yaga",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"keywords": [
"baba-yaga",
"functional",
"programming",
"language"
],
"activationEvents": [
"onLanguage:baba-yaga",
"onLanguage:markdown"
],
"main": "./extension.js",
"contributes": {
"languages": [
{
"id": "baba-yaga",
"aliases": [
"Baba Yaga",
"baba-yaga",
"baba"
],
"extensions": [
".baba",
".baba-yaga",
".by"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "baba-yaga",
"scopeName": "source.baba-yaga",
"path": "./syntaxes/baba-yaga.tmLanguage.json"
},
{
"scopeName": "markdown.baba-yaga.codeblock",
"path": "./syntaxes/baba-yaga-markdown.tmLanguage.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"source.baba-yaga": "baba-yaga"
}
}
],
"configuration": {
"title": "Baba Yaga",
"properties": {
"baba-yaga.enableTypeHints": {
"type": "boolean",
"default": true,
"description": "Show type hints and function signatures"
},
"baba-yaga.enableFunctionReferences": {
"type": "boolean",
"default": true,
"description": "Enable function references and go-to-definition"
},
"baba-yaga.enableAutoComplete": {
"type": "boolean",
"default": true,
"description": "Enable autocomplete for functions and variables"
},
"baba-yaga.enableErrorChecking": {
"type": "boolean",
"default": false,
"description": "Enable real-time error checking (currently disabled to prevent false semicolon warnings)"
},
"baba-yaga.enableMarkdownSupport": {
"type": "boolean",
"default": true,
"description": "Enable syntax highlighting for Baba Yaga code blocks in Markdown"
},
"baba-yaga.typeHintMode": {
"type": "string",
"enum": [
"none",
"inline",
"above"
],
"default": "none",
"description": "Type hint display mode: 'none' (hover only), 'inline' (after expressions), 'above' (above expressions like Elm)"
}
}
},
"commands": [
{
"command": "baba-yaga.showTypeInfo",
"title": "Show Type Information",
"category": "Baba Yaga"
},
{
"command": "baba-yaga.goToDefinition",
"title": "Go to Definition",
"category": "Baba Yaga"
},
{
"command": "baba-yaga.findReferences",
"title": "Find References",
"category": "Baba Yaga"
},
{
"command": "baba-yaga.showFunctionSignature",
"title": "Show Function Signature",
"category": "Baba Yaga"
},
{
"command": "baba-yaga.autoFixSyntax",
"title": "Auto-Fix Syntax Issues",
"category": "Baba Yaga"
},
{
"command": "baba-yaga.showSyntaxIssues",
"title": "Show Syntax Issues",
"category": "Baba Yaga"
}
],
"keybindings": [
{
"command": "baba-yaga.goToDefinition",
"key": "f12",
"when": "editorLangId == baba-yaga"
},
{
"command": "baba-yaga.findReferences",
"key": "shift+f12",
"when": "editorLangId == baba-yaga"
},
{
"command": "baba-yaga.showTypeInfo",
"key": "ctrl+shift+space",
"when": "editorLangId == baba-yaga"
},
{
"command": "baba-yaga.autoFixSyntax",
"key": "ctrl+shift+f",
"when": "editorLangId == baba-yaga"
},
{
"command": "baba-yaga.showSyntaxIssues",
"key": "ctrl+shift+i",
"when": "editorLangId == baba-yaga"
}
],
"snippets": [
{
"language": "baba-yaga",
"path": "./snippets/baba-yaga.json"
}
]
},
"scripts": {
"vscode:prepublish": "echo 'Extension ready for packaging'",
"package": "vsce package"
},
"devDependencies": {
"@vscode/vsce": "^2.15.0"
},
"license": "MIT"
}
|