Skip to content
This repository has been archived by the owner on Nov 5, 2021. It is now read-only.

Adding syntax highlighting support for .pla files (Programmable Logic Array) #163

Merged
merged 3 commits into from
Oct 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/monaco.contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ import './pascaligo/pascaligo.contribution';
import './perl/perl.contribution';
import './pgsql/pgsql.contribution';
import './php/php.contribution';
import './pla/pla.contributions';
import './postiats/postiats.contribution';
import './powerquery/powerquery.contribution';
import './powershell/powershell.contribution';
Expand Down
12 changes: 12 additions & 0 deletions src/pla/pla.contributions.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/

import { registerLanguage } from '../_.contribution';

registerLanguage({
id: 'pla',
extensions: ['.pla'],
loader: () => import('./pla')
});
Loading