Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fe5de99

Browse files
committed
0.0.5
Partial background highlighting (Clustal)
1 parent 95f920b commit fe5de99

18 files changed

+2650
-73
lines changed

vscode/.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
out
12
node_modules
2-
*.vsix
3+
.vscode-test/
4+
*.vsix

vscode/.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"eg2.tslint"
6+
]
7+
}

vscode/.vscode/launch.json

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// A launch configuration that launches the extension inside a new window
1+
// A launch configuration that compiles the extension and then opens it inside a new window
22
// Use IntelliSense to learn about possible attributes.
33
// Hover to view descriptions of existing attributes.
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
@@ -12,7 +12,25 @@
1212
"runtimeExecutable": "${execPath}",
1313
"args": [
1414
"--extensionDevelopmentPath=${workspaceFolder}"
15-
]
15+
],
16+
"outFiles": [
17+
"${workspaceFolder}/out/**/*.js"
18+
],
19+
"preLaunchTask": "npm: watch"
20+
},
21+
{
22+
"name": "Extension Tests",
23+
"type": "extensionHost",
24+
"request": "launch",
25+
"runtimeExecutable": "${execPath}",
26+
"args": [
27+
"--extensionDevelopmentPath=${workspaceFolder}",
28+
"--extensionTestsPath=${workspaceFolder}/out/test"
29+
],
30+
"outFiles": [
31+
"${workspaceFolder}/out/test/**/*.js"
32+
],
33+
"preLaunchTask": "npm: watch"
1634
}
1735
]
18-
}
36+
}

vscode/.vscode/settings.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// Place your settings in this file to overwrite default and user settings.
2+
{
3+
"files.exclude": {
4+
"out": false // set this to true to hide the "out" folder with the compiled JS files
5+
},
6+
"search.exclude": {
7+
"out": true // set this to false to include "out" folder in search results
8+
}
9+
}

vscode/.vscode/tasks.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// See https://go.microsoft.com/fwlink/?LinkId=733558
2+
// for the documentation about the tasks.json format
3+
{
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "npm",
8+
"script": "watch",
9+
"problemMatcher": "$tsc-watch",
10+
"isBackground": true,
11+
"presentation": {
12+
"reveal": "never"
13+
},
14+
"group": {
15+
"kind": "build",
16+
"isDefault": true
17+
}
18+
}
19+
]
20+
}

vscode/.vscodeignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
.vscode/**
22
.vscode-test/**
3+
out/test/**
4+
out/**/*.map
5+
src/**
36
.gitignore
7+
tsconfig.json
48
vsc-extension-quickstart.md
9+
tslint.json

vscode/CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Change Log
2-
All notable changes to the "biosyntax" extension will be documented in this file.
32

4-
## [0.0.1]
3+
## [Uneleased]
4+
5+
## [0.0.5] - 2018-05-26
6+
Update CHANGELOG
7+
8+
## [0.0.4] - 2018-05-26
9+
Background highlight for Clustal files.
10+
11+
## [0.0.3] - 2018-05-25
12+
Lower the requirement for VS Code's version
13+
14+
## [0.0.2] - 2018-05-24
15+
Better matching patterns for fastq files
16+
17+
## [0.0.1] - 2018-05-23
518
- Initial release

vscode/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To gain the most insight from your data, read our brief [bioSyntax Manual](http:
2020

2121
## Note
2222

23-
As described [here](https://github.com/Microsoft/vscode/issues/3429), vscode currently does not support for background styling in its themes. But the developers think they might add this feature in the future.
23+
As described [here](https://github.com/Microsoft/vscode/issues/3429), VS Code currently does not provide direct support for background styling in its themes. But the developers think they might add this feature in the future. So here, I use TypeScript to implement the background highlight, but there will be a delay when rendering the colors. After the VS Code team provides official support I will update the plugin.
2424

2525
*************************************************
2626

0 commit comments

Comments
 (0)