Skip to content

Commit aacb2be

Browse files
committed
Add mdx and new version of vim
1 parent f0fde44 commit aacb2be

File tree

2,702 files changed

+53451
-210435
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,702 files changed

+53451
-210435
lines changed

packages/app/config/webpack.common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ module.exports = {
470470
},
471471
{
472472
from: '../../standalone-packages/vscode-extensions/out',
473-
to: 'public/vscode-extensions/v3',
473+
to: 'public/vscode-extensions/v4',
474474
force: true,
475475
},
476476
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export const EXTENSIONS_LOCATION = process.env.VSCODE
22
? '/vscode/extensions-bundle'
3-
: '/public/vscode-extensions/v3';
3+
: '/public/vscode-extensions/v4';

packages/app/src/app/vscode/dev-bootstrap.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,16 @@ function initializeRequires() {
286286
return 1;
287287
},
288288
},
289+
clipboard: {
290+
writeText: (text: string) => {
291+
// @ts-ignore
292+
return navigator.clipboard.writeText(text);
293+
},
294+
readText: () => {
295+
// @ts-ignore
296+
return navigator.clipboard.readText();
297+
},
298+
},
289299
};
290300
});
291301

packages/node-services/src/module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,9 +267,10 @@ export default class Module {
267267
};
268268
fs.access = (_path: any, cb1: any, cb: (err?: Error) => void) => {
269269
const callback = cb || cb1;
270+
270271
// TODO: make this async
271272
if (fs.existsSync(_path)) {
272-
return callback;
273+
return callback();
273274
}
274275
callback(new Error('File not found'));
275276
};

standalone-packages/vscode-editor/release/min/vs/editor/codesandbox.editor.main.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

standalone-packages/vscode-extensions/out/extensions/index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

standalone-packages/vscode-extensions/out/extensions/python/out/pythonMain.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Set default behavior to automatically normalize line endings.
2+
* text=auto
3+
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
3+
<Metadata>
4+
<Identity Language="en-US" Id="mdx" Version="0.1.0" Publisher="silvenon"/>
5+
<DisplayName>MDX</DisplayName>
6+
<Description xml:space="preserve">Provides syntax highlighting and bracket matching for MDX (JSX in Markdown) files.</Description>
7+
<Tags>mdx,Markdown React,MDX,__ext_mdx</Tags>
8+
<Categories>Programming Languages</Categories>
9+
<GalleryFlags>Public</GalleryFlags>
10+
<Badges></Badges>
11+
<Properties>
12+
<Property Id="Microsoft.VisualStudio.Code.Engine" Value="*" />
13+
<Property Id="Microsoft.VisualStudio.Code.ExtensionDependencies" Value="" />
14+
<Property Id="Microsoft.VisualStudio.Code.ExtensionPack" Value="" />
15+
16+
<Property Id="Microsoft.VisualStudio.Services.Links.Source" Value="https://github.com/silvenon/vscode-mdx.git" />
17+
<Property Id="Microsoft.VisualStudio.Services.Links.Getstarted" Value="https://github.com/silvenon/vscode-mdx.git" />
18+
19+
<Property Id="Microsoft.VisualStudio.Services.Links.GitHub" Value="https://github.com/silvenon/vscode-mdx.git" />
20+
21+
22+
<Property Id="Microsoft.VisualStudio.Services.Links.Support" Value="https://github.com/silvenon/vscode-mdx/issues" />
23+
24+
25+
26+
<Property Id="Microsoft.VisualStudio.Services.GitHubFlavoredMarkdown" Value="true" />
27+
28+
29+
</Properties>
30+
<License>extension/license.txt</License>
31+
<Icon>extension/images/icon.png</Icon>
32+
</Metadata>
33+
<Installation>
34+
<InstallationTarget Id="Microsoft.VisualStudio.Code"/>
35+
</Installation>
36+
<Dependencies/>
37+
<Assets>
38+
<Asset Type="Microsoft.VisualStudio.Code.Manifest" Path="extension/package.json" Addressable="true" />
39+
<Asset Type="Microsoft.VisualStudio.Services.Content.Details" Path="extension/readme.md" Addressable="true" /><Asset Type="Microsoft.VisualStudio.Services.Content.License" Path="extension/license.txt" Addressable="true" /><Asset Type="Microsoft.VisualStudio.Services.Icons.Default" Path="extension/images/icon.png" Addressable="true" />
40+
</Assets>
41+
</PackageManifest>
3.26 KB
Loading

0 commit comments

Comments
 (0)