Skip to content

Instantly share code, notes, and snippets.

@jpdck
jpdck / mapper_ab.json
Created December 23, 2025 05:04
VSCode Codemap extension configuration for the Amber programming language, providing syntax-aware code navigation with support for functions, constants, imports, and main entry points.
{
"codemap.ab": [
{
"pattern": "^(?:pub\\s+)?fun\\s+\\w+",
"clear": "^(?:pub\\s+)?fun\\s+",
"suffix": "()",
"icon": "function"
},
{
"pattern": "^main(?:\\s*\\(.*\\))?\\s*\\{",