File tree Expand file tree Collapse file tree 4 files changed +15
-0
lines changed
Expand file tree Collapse file tree 4 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ Requires Hexa compiler on your host or remote machine
1818
1919![ Features] ( features.png?raw=true )
2020
21+ ## Web Extension
22+
23+ This extension works in web VSCode environment like github.dev
24+
2125## Install
2226
2327< https://marketplace.visualstudio.com/items?itemName=PeyTy.vshexa >
Original file line number Diff line number Diff line change 1+ // PeyTy (c) 2023
12"use strict"
23
34// Used for TypeScript JSDoc @types
Original file line number Diff line number Diff line change 1+ // PeyTy (c) 2023
2+ "use strict"
3+
4+ // Only this one is allowed for web extension!
5+ const vscode = require ( 'vscode' )
6+
7+ exports . activate = function ( context ) {
8+ // TODO
9+ }
Original file line number Diff line number Diff line change 1515 " onLanguage:hexa"
1616 ],
1717 "main" : " ./extension/extension.js" ,
18+ "browser" : " ./extension/web.js" ,
1819 "categories" : [
1920 " Programming Languages" ,
2021 " Linters"
You can’t perform that action at this time.
0 commit comments