Skip to content

Commit 7742929

Browse files
authored
Refactor cross-entity jump command to use QuickPick with inline validation and improved UX (#52)
1 parent 4b7df79 commit 7742929

File tree

3 files changed

+156
-147
lines changed

3 files changed

+156
-147
lines changed

package.json

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1276,15 +1276,6 @@
12761276
"key": "Ctrl+N",
12771277
"when": "workspaceFolderCount != 0 && (editorLangId =~ /^objectscript/ || !editorIsOpen)"
12781278
},
1279-
{
1280-
"command": "vscode-objectscript.ccs.jumpToTagOffsetCrossEntity",
1281-
"key": "Ctrl+G",
1282-
"when": "workspaceFolderCount != 0 && (editorLangId =~ /^objectscript/ || !editorIsOpen)"
1283-
},
1284-
{
1285-
"key": "Ctrl+G",
1286-
"command": "-vscode-objectscript.jumpToTagAndOffset"
1287-
},
12881279
{
12891280
"command": "vscode-objectscript.compile",
12901281
"key": "Ctrl+F7",

src/ccs/commands/createItem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ async function promptForItemName(options: PromptForItemNameOptions = {}): Promis
1818
const hasBadChars = (s: string) => /[\\/]/.test(s) || /\s/.test(s);
1919

2020
const ib = vscode.window.createInputBox();
21-
ib.title = "Criar Item Consistem";
21+
ib.title = "Consistem — Criar Item";
2222
ib.prompt = "Informe o nome da classe ou rotina a ser criada (.cls ou .mac)";
2323
ib.placeholder = "MeuPacote.MinhaClasse.cls ou MINHAROTINA.mac";
2424
ib.ignoreFocusOut = true;

0 commit comments

Comments
 (0)