diff --git a/CHANGELOG.md b/CHANGELOG.md index b7b4688..8ea9e36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [v0.0.17](https://github.com/kortina/vscode-markdown-notes/releases/edit/v0.0.17) (2020-08-23) + +Add `CompletionItem.documentation` to provide more details about completion options. + +**Enhancements:** + +- Set `CompletionItem.documentation` to the file contents, giving more detail to disambiguate between long / similar filenames. Closes #38. Tx @ahazxm + - Add `vscodeMarkdownNotes.compileSuggestionDetails` setting, which determines whether to render the markdown in the `CompletionItem.documentation` + - `true`: ![true](https://user-images.githubusercontent.com/24939578/90867513-13994e80-e3c8-11ea-9bb3-a98767796a2d.png) + - `false`: ![false](https://user-images.githubusercontent.com/24939578/90867523-16943f00-e3c8-11ea-86e8-29b7bd0cc0b7.png) + +**Diff:** + +https://github.com/kortina/vscode-markdown-notes/compare/fa011bb64c363a05231a043f39f800e7497617a9..271cf75cc2311a120eabd08f060270f927c0e401 + ## [v0.0.16](https://github.com/kortina/vscode-markdown-notes/releases/edit/v0.0.16) (2020-08-21) **Enhancements:** diff --git a/package.json b/package.json index 03ceedf..1d4ab0b 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-markdown-notes", "displayName": "Markdown Notes", "description": "Navigate notes with [[wiki-links]], backlinks, and #tags (like Bear, Roam, etc). Automatically create notes from new inline [[wiki-links]]. Use Peek Definition to preview linked notes.", - "version": "0.0.16", + "version": "0.0.17", "publisher": "kortina", "repository": { "url": "https://github.com/kortina/vscode-markdown-notes.git", @@ -103,7 +103,7 @@ "vscodeMarkdownNotes.compileSuggestionDetails": { "type": "boolean", "default": false, - "description": "Specifies whether to compile the markdown content for details when showing suggestion details" + "description": "Set `true` to compile the markdown content when showing suggestion documentation for a CompletionItem. Defaults `false`." }, "vscodeMarkdownNotes.allowPipedWikiLinks": { "type": "boolean",