Skip to content

Commit

Permalink
Prepare 2020.12.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gediminasz committed Dec 20, 2020
1 parent 7732dc8 commit e3d1783
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# Change Log

## 2020.12.0

- Added support for most of the ctags symbol kinds. Thanks, @hirooih!

## 2020.10.0

- Added fuzzy matching to workspace symbol provider. It can be disabled by setting `"ctags-companion.fuzzyMatchingEnabled"` to `false`.
- Added support for absolute paths in the tags file (thanks, @crawler!)
- Added support for absolute paths in the tags file. Thanks, @crawler!

## 2020.9.0

Expand Down
13 changes: 11 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "git",
"url": "https://github.com/gediminasz/ctags-companion"
},
"version": "2020.10.0",
"version": "2020.12.0",
"engines": {
"vscode": "^1.42.0"
},
Expand Down
4 changes: 2 additions & 2 deletions src/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ async function testCtagsDocumentSymbolProvider(stash, document) {
assert(() => definitions[2].location.range.start.line === 3);

assert(() => definitions[3].name === "method");
assert(() => definitions[3].kind === vscode.SymbolKind.Method);
assert(() => definitions[3].kind === vscode.SymbolKind.Property);
assert(() => definitions[3].location.uri.path.endsWith("source.py"));
assert(() => definitions[3].location.range.start.line === 8);

assert(() => definitions[4].name === "method_with_underscores");
assert(() => definitions[4].kind === vscode.SymbolKind.Method);
assert(() => definitions[4].kind === vscode.SymbolKind.Property);
assert(() => definitions[4].location.uri.path.endsWith("source.py"));
assert(() => definitions[4].location.range.start.line === 11);
}
Expand Down

0 comments on commit e3d1783

Please sign in to comment.