A Visual Studio Code extension that automatically detects and tracks annotations in Miranda (.mir) files, centralizing them in a sidebar panel for easy navigation.
Features
Sidebar panel with all annotations found in the active file, organized by type
Color-coded keywords directly in the editor for each annotation type
Click to navigate directly to the annotated line
Real-time updates as you type, no need to save
Bilingual (English / Spanish) — automatically detects VS Code's language setting
Supported Annotations
Tag
Description
\|\| TODO:
Pending tasks
\|\| FIXME:
Bugs to fix
\|\| NOTE:
Important notes
\|\| HACK:
Temporary workarounds
\|\| OPTIMIZE:
Code to improve
\|\| DEPRECATED:
Deprecated code
\|\| BUG:
Confirmed bugs
\|\| REVIEW:
Code to review
Usage
Open a .mir file and add annotations using Miranda's comment syntax (||):
|| TODO: implement sorting function
|| FIXME: fails with empty lists
len [] = 0
len (x:xs) = 1 + len xs
The sidebar panel updates automatically as you type. Click any annotation in the panel to jump to the corresponding line in the editor.
Requirements
No external dependencies. Works entirely within VS Code using native extension APIs.