Skip to content

Commit

Permalink
More cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jtanx committed Dec 3, 2017
1 parent 6496d7e commit 6f91c88
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Change Log
All notable changes to the "ctagsx" extension will be documented in this file.

## [1.0.6] - UNRELEASED
## [1.0.6] - 2017-12-03
- Registered ctagsx as a definition provider for *all* languages (integration into VSCode's definition provider interface). May be disabled by setting `ctagsx.disableDefinitionProvider` to `true`.

## [1.0.5] - 2017-10-07
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ ctags --tag-relative --extra=f -R .

This will generate a file called `tags`. This may be placed in the same folder as the source file being edited, or any of its parent directories. ctagsx will search and use the tags file that is closest to the source file. The tags file may be named either `tags` or `.tags`.

To search for a tag, press `Ctrl+t`/`Cmd+t`. To jump back to where you searched for a tag, press `Alt+t`. To manually enter the tag to jump to, press `Ctrl+alt+t`/`Cmd+alt+t`.
As of version 1.0.6, ctagsx integrates directly as a definition provider (Go to definition - `F12` or `Ctrl+left click`). This feature may be optionally disabled.

Separate to this, as of version 1.0.6, ctagsx integrates directly with VSCode's definition provider.
Separate to this, ctagsx also provides another searching mechanism; to search for a tag, press `Ctrl+t`/`Cmd+t`. To jump back to where you searched for a tag, press `Alt+t`. To manually enter the tag to jump to, press `Ctrl+alt+t`/`Cmd+alt+t`.

## Features
* Is cross platform
Expand All @@ -27,7 +27,7 @@ Separate to this, as of version 1.0.6, ctagsx integrates directly with VSCode's
Please report any issues to https://github.com/jtanx/ctagsx/issues

* It is assumed that tags files are sorted, as ctagsx will only perform a binary search on the tags file. If the file is not sorted, then it may generate incorrect results.
* It is not possible to search for tags when editing a large file (>= 5MB). This is a [limitation](https://github.com/Microsoft/vscode/issues/3147) of Visual Studio Code.
* Use while editing very large files may not be supported, due to [limitations](https://github.com/Microsoft/vscode/issues/3147) of Visual Studio Code.
* If the navigated-to line contains multiple occurrences of the tag name, the cursor is only placed at the first occurrence.

## Release Notes
Expand Down
1 change: 0 additions & 1 deletion extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ function provideDefinition(document, position, canceller) {
})
.catch(err => {
console.log(err.stack)
return Promise.reject()
})
}

Expand Down
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": "ctagsx",
"displayName": "ctagsx",
"description": "A fast, cross-platform and working ctags implementation",
"version": "1.0.5",
"version": "1.0.6",
"publisher": "jtanx",
"icon": "img/logo.png",
"engines": {
Expand Down

0 comments on commit 6f91c88

Please sign in to comment.