-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from alefragnani/features/support-web
Add web support
- Loading branch information
Showing
10 changed files
with
90 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Alessandro Fragnani. All rights reserved. | ||
* Licensed under the MIT License. See License.md in the project root for license information. | ||
*--------------------------------------------------------------------------------------------*/ | ||
|
||
import * as vscode from 'vscode'; | ||
|
||
import { Container } from './container'; | ||
import { registerWalkthrough } from "./commands/walkthrough"; | ||
import { registerWhatsNew } from './whats-new/commands'; | ||
|
||
// this method is called when your extension is activated | ||
// your extension is activated the very first time the command is executed | ||
export async function activate(context: vscode.ExtensionContext) { | ||
|
||
Container.context = context; | ||
|
||
await registerWhatsNew(); | ||
registerWalkthrough(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule vscode-whats-new
updated
4 files
+1 β1 | README.md | |
+24 β24 | src/Manager.ts | |
+14 β5 | src/PageBuilder.ts | |
+5 β5 | ui/main.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,16 @@ | ||
![Formatter](./vscode-pascal-format-code.gif) | ||
## Pascal Formatter Extension | ||
|
||
![Pascal Formatter](./vscode-pascal-format-code.gif) | ||
|
||
Use the [Pascal Formatter](command:_pascal.installPascalFormatter) extension to format your code. | ||
|
||
You an choose choose between **Jedi Code Format**, **FreePascal PToP** or **Embarcadero Formatter** | ||
|
||
|
||
<table align="center" width="85%" border="0"> | ||
<tr> | ||
<td align="center"> | ||
<a title="Install Pascal Formatter" href="command:_pascal.installPascalFormatter">Install Pascal Formatter</a> | ||
</td> | ||
</tr> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters