We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35f3a6f commit 5b4a55dCopy full SHA for 5b4a55d
src/commands.ts
@@ -5,4 +5,5 @@
5
6
export enum YamlCommands {
7
JUMP_TO_SCHEMA = 'jumpToSchema',
8
+ JUMP_TO_JOB = 'jumpToJob',
9
}
src/languageservice/services/yamlCommands.ts
@@ -9,6 +9,10 @@ import { CommandExecutor } from '../../languageserver/commandExecutor';
import { URI } from 'vscode-uri';
10
11
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
+
16
commandExecutor.registerCommand(YamlCommands.JUMP_TO_SCHEMA, async (uri: string) => {
17
if (!uri) {
18
return;
0 commit comments