|
5 | 5 | "author": "Uriah Galang <codeitlikemiley@gmail.com>", |
6 | 6 | "icon": "images/raz-logo.gif", |
7 | 7 | "license": "MIT", |
8 | | - "version": "0.1.3", |
| 8 | + "version": "0.1.4", |
9 | 9 | "repository": { |
10 | 10 | "type": "git", |
11 | 11 | "url": "https://github.com/codeitlikemiley/raz" |
|
76 | 76 | "command": "raz.setupBinary", |
77 | 77 | "title": "Setup RAZ Binary", |
78 | 78 | "category": "RAZ" |
| 79 | + }, |
| 80 | + { |
| 81 | + "command": "raz.toggleBreakpointDetection", |
| 82 | + "title": "Toggle Breakpoint Detection", |
| 83 | + "category": "RAZ" |
| 84 | + }, |
| 85 | + { |
| 86 | + "command": "raz.showDebugInfo", |
| 87 | + "title": "Show Debug Info", |
| 88 | + "category": "RAZ" |
79 | 89 | } |
80 | 90 | ], |
81 | 91 | "keybindings": [ |
|
109 | 119 | "type": "string", |
110 | 120 | "default": "", |
111 | 121 | "description": "Custom path to RAZ binary. Leave empty for automatic download, or set to 'raz' to use system PATH, or provide full path to binary. Use 'RAZ: Setup RAZ Binary' command for guided setup." |
| 122 | + }, |
| 123 | + "raz.enableBreakpointDetection": { |
| 124 | + "type": "boolean", |
| 125 | + "default": true, |
| 126 | + "description": "Enable automatic breakpoint detection for debugging integration" |
| 127 | + }, |
| 128 | + "raz.useRustAnalyzerCodeLens": { |
| 129 | + "type": "boolean", |
| 130 | + "default": true, |
| 131 | + "description": "Use rust-analyzer codelens for debugging support" |
| 132 | + }, |
| 133 | + "raz.prioritySymbolKinds": { |
| 134 | + "type": "array", |
| 135 | + "default": ["Function", "Enum", "Struct", "Object", "Module"], |
| 136 | + "description": "Symbol kinds to prioritize for debugging context detection", |
| 137 | + "items": { |
| 138 | + "type": "string", |
| 139 | + "enum": ["Module", "Object", "Struct", "Enum", "Function"] |
| 140 | + } |
| 141 | + }, |
| 142 | + "raz.logLevel": { |
| 143 | + "type": "string", |
| 144 | + "default": "error", |
| 145 | + "description": "Set the logging level for RAZ debugging features", |
| 146 | + "enum": ["debug", "info", "error"] |
112 | 147 | } |
113 | 148 | } |
114 | 149 | } |
|
0 commit comments