forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommands.ts
More file actions
24 lines (22 loc) · 815 Bytes
/
Copy pathcommands.ts
File metadata and controls
24 lines (22 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"use strict";
export class RequestCommands {
public static Exit: Buffer = new Buffer("exit");
public static Ping: Buffer = new Buffer("ping");
public static Arguments = new Buffer("args");
public static Completions = new Buffer("comp");
public static Definitions = new Buffer("defs");
public static Hover = new Buffer("hovr");
public static Usages = new Buffer("usag");
public static Names = new Buffer("name");
}
export namespace ResponseCommands {
export const Pong = 'pong';
export const TraceLog = 'tlog';
export const Error = 'eror';
export const Signature = "args";
export const Completions = "comp";
export const Definitions = "defs";
export const Hover = "hovr";
export const References = "usag";
export const DocumentSymbols = "name";
}