mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 14:28:36 +02:00
MISC: Add raw command string to autocomplete data (#1846)
This commit is contained in:
7
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
7
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@@ -9671,6 +9671,13 @@ interface AutocompleteData {
|
||||
filename: string;
|
||||
/** The processes running on the host */
|
||||
processes: ProcessInfo[];
|
||||
/**
|
||||
* The raw command string that you have typed until you press [Tab] to use the autocomplete feature.
|
||||
*
|
||||
* For example, if you type `[Space]run test.js[Space][Space][Space][Press tab to use autocomplete]`, "command" will
|
||||
* contain all space characters (1 space character before "run" and 3 space characters after ".js").
|
||||
*/
|
||||
command: string;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user