2025.09.23
This commit is contained in:
14
README.md
14
README.md
@@ -1,9 +1,19 @@
|
|||||||
# format-4690 README
|
# Format-4690 README
|
||||||
|
|
||||||
Hola
|
Extensión para soporte del lenguaje 4690 BASIC de IBM
|
||||||
|
|
||||||
|
Principales funcionalidades:
|
||||||
|
* Resaltado de sintaxis.
|
||||||
|
* Formateado/alineado de documento (default VS Code `Alt+Shift+F`).
|
||||||
|
* Seguimiento de funciones/subrutinas (default VS Code `Alt+T`).
|
||||||
|
* Ir a definición para funciones/subrutinas (default VS Code `Ctrl+ Click Izq.` sobre nombre/llamada de función/subrutina).
|
||||||
|
* Información al colocar mouse sobre llamada de función/subrutina.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
### 2025.08.04
|
### 2025.08.04
|
||||||
|
|
||||||
Inicial
|
Inicial
|
||||||
|
|
||||||
|
### 2025.09.23
|
||||||
|
Correcciones de sintaxis
|
||||||
@@ -608,7 +608,6 @@ export async function activate(context: vscode.ExtensionContext) {
|
|||||||
// Prefer definition from current document, otherwise use first one
|
// Prefer definition from current document, otherwise use first one
|
||||||
const definition = definitions.find(def => def.location.uri.toString() === document.uri.toString()) || definitions[0];
|
const definition = definitions.find(def => def.location.uri.toString() === document.uri.toString()) || definitions[0];
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const content = new vscode.MarkdownString();
|
const content = new vscode.MarkdownString();
|
||||||
|
|
||||||
|
|||||||
@@ -154,7 +154,7 @@
|
|||||||
},
|
},
|
||||||
"fun-sub-modifier": {
|
"fun-sub-modifier": {
|
||||||
"name": "storage.modifer",
|
"name": "storage.modifer",
|
||||||
"match": "PUBLIC|public|EXTERNAL|external"
|
"match": "(?i)PUBLIC|EXTERNAL"
|
||||||
},
|
},
|
||||||
"subroutine-decl": {
|
"subroutine-decl": {
|
||||||
"name": "meta.subroutine",
|
"name": "meta.subroutine",
|
||||||
|
|||||||
Reference in New Issue
Block a user