Skip to content

Commit

Permalink
1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
WalonLi committed Dec 24, 2021
1 parent 40c75fc commit 18e0ae8
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to the "edk2-vscode" extension will be documented in this fi

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

> ### 1.0.5
> 1. New feature - code outline, root extend path.
> 2. Bug fix
> ### 1.0.4
> 1. New feature - dsc build and go to build
> 2. Bug fix
> ### 1.0.3
> 1. Fix some destination hotkey issues.
> 2. Support snippets
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ Extension |Functions
## Comment Toggling (Ctrl+/)
* DEC/DSC/FDF/INF/UNI/VFR

## Code Outline (Ctrl+/)
* DEC/DSC/INF

![](demo/outline.jpg)

## Snippet
Name |Alias
----------------|-------
Expand Down
Binary file added demo/outline.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "edk2-vscode",
"displayName": "edk2-vscode",
"description": "",
"version": "1.0.4",
"version": "1.0.5",
"publisher": "walonli",
"engines": {
"vscode": "^1.37.0"
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Common {
let folder: string[] = [vscode.workspace.workspaceFolders[0].uri.fsPath];

if (config.has('root.extend.path')) {
let s: string = config.get('root.extend.path')!
let s: string = config.get('root.extend.path') + '';
s.replace(/\s/g, '').split(',').forEach(function(v) {
folder.push(vscode.workspace.workspaceFolders![0].uri.fsPath + '/' + v);
});
Expand Down

0 comments on commit 18e0ae8

Please sign in to comment.