Skip to content

Commit 8ce8e46

Browse files
author
Kin Numaru
authored
Merge pull request #7 from numaru/release/v1.0.0
Update master to v1.0.0
2 parents 4f80370 + ab54bd1 commit 8ce8e46

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## 1.0.0 - 2018-03-31
11+
12+
### Added
13+
14+
* Syntax highlighting
15+
* Test suites folding
16+
17+
[Unreleased]: https://github.com/numaru/vscode-tap/compare/v1.0.0...develop

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
# Functionality
1+
# TAP for Visual Studio Code
22

3-
** TODO: Functionality description **
3+
This extension add language support for [Test Anything Protocol](https://testanything.org/) language.
44

5-
# Install
5+
# Functionality
66

7-
** TODO: Install description **
7+
* [x] Syntax highlighting
8+
* [x] Test suites folding
9+
* [ ] Logging of test fails in problems console
810

911
# Known Issues
1012

syntaxes/tap.tmLanguage.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"match": "^\\d+\\.\\.\\d+$",
1919
"name": "storage.modifier"
2020
}, {
21-
"match": "^((ok|not ok) \\d+)( - ([^#\\n]*))?",
21+
"match": "^\\s*((ok|not ok) \\d+)( - ([^#\\n]*))?",
2222
"captures": {
2323
"1": {"name": "storage.type"},
2424
"4": {"name": "string.unquoted"}

0 commit comments

Comments
 (0)