Skip to content

Commit 0925073

Browse files
committed
some little changes
1 parent f016877 commit 0925073

10 files changed

+584
-785
lines changed

Diff for: .npmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
package-lock=false
1+

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## [0.7.4]
4+
5+
- Outline improvements
6+
- Hover on system functions with documentation
7+
38
## [0.7.2]
49

510
- Fixed outline's regions

Diff for: extension.ts

+2
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,11 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
6464
outputChannel.show();
6565
}),
6666
vscode.commands.registerCommand('vscode-objectscript.compile', () => importAndCompile(false)),
67+
vscode.commands.registerCommand('vscode-objectscript.touchBar.compile', () => importAndCompile(false)),
6768
vscode.commands.registerCommand('vscode-objectscript.compileWithFlags', () => importAndCompile(true)),
6869
vscode.commands.registerCommand('vscode-objectscript.export', exportAll),
6970
vscode.commands.registerCommand('vscode-objectscript.viewOthers', viewOthers),
71+
vscode.commands.registerCommand('vscode-objectscript.touchBar.viewOthers', viewOthers),
7072
vscode.commands.registerCommand('vscode-objectscript.explorer.refresh', () => explorerProvider.refresh()),
7173
vscode.commands.registerCommand('vscode-objectscript.explorer.openClass', vscode.window.showTextDocument),
7274
vscode.commands.registerCommand('vscode-objectscript.explorer.openRoutine', vscode.window.showTextDocument),

Diff for: images/explorer.png

473 KB
Loading

Diff for: images/screenshot.png

487 KB
Loading

0 commit comments

Comments
 (0)