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

Commit

Permalink
Merge pull request #163 from sw23/main
Browse files Browse the repository at this point in the history
Adding syntax highlighting support for .pla files (Programmable Logic Array)
  • Loading branch information
alexdima authored Oct 11, 2021
2 parents 0e901e2 + 2db4b4e commit 0b103fa
Show file tree
Hide file tree
Showing 4 changed files with 768 additions and 0 deletions.
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

0 comments on commit 0b103fa

Please sign in to comment.