Skip to content

Commit 5b4a55d

Browse files
committed
wip
1 parent 35f3a6f commit 5b4a55d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/commands.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55

66
export enum YamlCommands {
77
JUMP_TO_SCHEMA = 'jumpToSchema',
8+
JUMP_TO_JOB = 'jumpToJob',
89
}

src/languageservice/services/yamlCommands.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ import { CommandExecutor } from '../../languageserver/commandExecutor';
99
import { URI } from 'vscode-uri';
1010

1111
export function registerCommands(commandExecutor: CommandExecutor, connection: Connection): void {
12+
commandExecutor.registerCommand(YamlCommands.JUMP_TO_JOB, async (uri: string) => {
13+
console.error('Jump to job not implemented');
14+
});
15+
1216
commandExecutor.registerCommand(YamlCommands.JUMP_TO_SCHEMA, async (uri: string) => {
1317
if (!uri) {
1418
return;

0 commit comments

Comments
 (0)