Releases: oleg-shilo/codemap.vscode
Releases · oleg-shilo/codemap.vscode
Release v1.26.5
- Added detection of the faulty C# syntaxer and prompt with the suggested workaround.
- Added command
codemap.toggle_csharp_mapper
- Added persistence of the nodes' collapsible state (per session)
Release v1.26.4
- Added missing icon for
Field
items - Added caching to avoid generating the document map if the document hasn't changed
- Improved C#-parser based mapper
v1.26.3: Release 1.26.3
Release v1.26.3
- Added alternative built-in limited C# mapper to be used in the environments that have no C# syntax infrastructure available (.NET, Roslyn, CS-Script Syntaxer). Use "codemap.useNoDependencyCSharpMapper" to control which mapper to handle C# documents.
Release v1.26.2
- Changed extension icon (#103)
Release v1.26.1
- Fixed problem with the extension startup crash if the last state file for
Codemap Settings
contains corrupted data. - Issue #98: Make icon as simple additional string
Not you can specify an emoji character as a node icon in the config section of the generic mapper.
Release 1.26.0
Release 1.26.0
- Issue #99: Added Verilog Mapper
Release v1.25.0
- Issue #96: Unresponsive Generic Mapper
- Added support (dedicated mapper) for LScript syntax.
Release v1.24.0
- Issue #59: How to register a custom mapper with a complex file extension
ATTENTION: complex extensions should be escaped in the config file with /
character due to the VSCode limitations of not handling dots in the config names correctly.
IE the mapper configuration for document.git.md
file should be encoded in the setting.jeson as "codemap.git/md": "config:codemap.md",
Release v1.22.0
- Added support for React modules in TypeScript and JavaScript syntax (.tsx/.jsx files).
Release v1.21.0
- Added support for GO syntax (*.go files).
- Added workflow for editing the mapper of the active opened document.
- Added workflow for creating a new mapper for the active opened document.
- New commands:
codemap.edit_mapper
and `codemap.create_mapper