-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.nls.json
More file actions
100 lines (100 loc) · 11.6 KB
/
package.nls.json
File metadata and controls
100 lines (100 loc) · 11.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"command.gmodEntityExplorer.editProperty.title": "Edit Property",
"command.gmodEntityExplorer.loadMore.title": "Load More",
"command.gmodEntityExplorer.refresh.title": "Refresh",
"command.gmodEntityExplorer.search.title": "Search",
"command.gmodErrors.clear.title": "Clear",
"command.gmodRdb.checkForUpdates.title": "GMod Debugger: Check for Updates",
"config.common.deprecated": "This option is deprecated",
"config.common.enum.default.description": "Use value from `.emmyrc.json` or fall back to default",
"config.common.enum.off.description": "Override `.emmyrc.json` and disable this option",
"config.common.enum.on.description": "Override `.emmyrc.json` and enable this option",
"config.emmylua.codeAction.insertSpace.description": "Add space after `---` comments when inserting `@diagnostic disable-next-line`.",
"config.emmylua.codeLens.enable.description": "Enable code lens.",
"config.emmylua.completion.autoRequire.description": "Automatically insert call to `require` when autocompletion\ninserts objects from other modules.",
"config.emmylua.completion.baseFunctionIncludesName.description": "Whether to include the name in the base function completion. Effect: `function () end` -> `function name() end`.",
"config.emmylua.completion.callSnippet.description": "Insert function-call snippets during completion. Zero-argument calls stay as `name()`, while calls with parameters place the cursor at the first argument.",
"config.emmylua.completion.enable.description": "Enable autocompletion.",
"config.emmylua.completion.postfix.description": "Symbol that's used to trigger postfix autocompletion.",
"config.emmylua.completion.stagedCallSnippets.description": "Use staged completion snippets for known APIs such as `hook.Add` and `net.Receive`, starting with an empty string argument and retriggering suggestions.",
"config.emmylua.diagnostics.diagnosticInterval.description": "Delay between opening/changing a file and scanning it for errors, in milliseconds.",
"config.emmylua.documentColor.enable.description": "Enable parsing strings for color tags and showing a color picker next to them.",
"config.emmylua.hint.enable.description": "Enable inlay hints.",
"config.emmylua.hint.enumParamHint.description": "Show name of enumerator when passing a literal value to a function\nthat expects an enum.\n\nExample:\n\n```lua\n--- @enum Level\nlocal Foo = {\n Info = 1,\n Error = 2,\n}\n\n--- @param l Level\nfunction print_level(l) end\n\nprint_level(1 --[[ Hint: Level.Info ]])\n```",
"config.emmylua.hint.indexHint.description": "Show named array indexes.\n\nExample:\n\n```lua\nlocal array = {\n [1] = 1, -- [name]\n}\n\nprint(array[1] --[[ Hint: name ]])\n```",
"config.emmylua.hint.localHint.description": "Show types of local variables.",
"config.emmylua.hint.metaCallHint.description": "Show hint when calling an object results in a call to\nits meta table's `__call` function.",
"config.emmylua.hint.overrideHint.description": "Show methods that override functions from base class.",
"config.emmylua.hint.paramHint.description": "Show parameter names in function calls and parameter types in function definitions.",
"config.emmylua.hover.enable.description": "Enable showing documentation on hover.",
"config.emmylua.inlineValues.enable.description": "Show inline values during debug.",
"config.emmylua.language.completeAnnotation.description": "Automatically insert `\"---\"` when line breaking after a comment",
"config.emmylua.ls.executablePath.description": "Override path to the EmmyLua language server executable.\n\nUses bundled language server if not specified",
"config.emmylua.ls.globalConfigPath.description": "Path to the global `.emmyrc.json`.\n\nSettings from this file will be used if they're not overridden by the project's `.emmyrc.json`",
"config.emmylua.ls.startParameters.description": "Additional arguments to be passed to the EmmyLua language server",
"config.emmylua.references.enable.description": "Enable searching for symbol usages.",
"config.emmylua.references.fuzzySearch.description": "Use fuzzy search when searching for symbol usages\nand normal search didn't find anything.",
"config.emmylua.references.shortStringSearch.description": "Also search for usages in strings.",
"config.emmylua.semanticTokens.enable.description": "Enable semantic tokens.",
"config.emmylua.semanticTokens.renderDocumentationMarkup.description": "Render Markdown/RST in documentation. Set `doc.syntax` for this option to have effect.",
"config.emmylua.workspace.enableReindex.description": "Enable full project reindex after changing a file.",
"config.emmylua.workspace.reindexDuration.description": "Delay between changing a file and full project reindex, in milliseconds.",
"config.gluals.codeAction.insertSpace.description": "Add space after `---` comments when inserting `@diagnostic disable-next-line`.",
"config.gluals.codeLens.enable.description": "Enable code lens.",
"config.gluals.completion.autoRequire.description": "Automatically insert call to `require` when autocompletion\ninserts objects from other modules.",
"config.gluals.completion.baseFunctionIncludesName.description": "Whether to include the name in the base function completion. Effect: `function () end` -> `function name() end`.",
"config.gluals.completion.callSnippet.description": "Whether to use call snippets in completions.",
"config.gluals.completion.enable.description": "Enable autocompletion.",
"config.gluals.completion.postfix.description": "Symbol that's used to trigger postfix autocompletion.",
"config.gluals.completion.stagedCallSnippets.description": "Whether to stage known API call snippets so autocomplete can guide\nthe user through the next relevant argument.",
"config.gluals.decorations.globalUnderline.description": "Underline global-variable annotator overlays.",
"config.gluals.decorations.mutableLocalUnderline.description": "Underline mutable local-variable annotator overlays.",
"config.gluals.decorations.mutableParameterUnderline.description": "Underline mutable parameter annotator overlays.",
"config.gluals.decorations.readonlyLocalUnderline.description": "Underline readonly local-variable annotator overlays.",
"config.gluals.decorations.readonlyParameterUnderline.description": "Underline readonly parameter annotator overlays.",
"config.gluals.diagnostics.diagnosticInterval.description": "Delay between opening/changing a file and scanning it for errors, in milliseconds.",
"config.gluals.documentColor.enable.description": "Enable parsing strings for color tags and showing a color picker next to them.",
"config.gluals.gmod.templatePath.description": "Path to a folder containing custom GLua scaffolding templates (`.lua` files).\nBuilt-in templates are used as fallback when a custom one is not found.\nAccepts an absolute path or a path relative to the workspace root.",
"config.gluals.hint.closingEndHint.description": "Show an inlay hint after closing `end` keywords indicating what block\nthey belong to (e.g. function name). Only shown when the block spans\nat least `closingEndHintMinLines` lines.",
"config.gluals.hint.closingEndHintControlFlow.description": "Also show closing `end` hints for control flow blocks (if, while, do,\nfor). Only effective when `closingEndHint` is enabled.",
"config.gluals.hint.closingEndHintMinLines.description": "Minimum number of lines a block must span before a closing `end` hint\nis shown.",
"config.gluals.hint.enumParamHint.description": "Show name of enumerator when passing a literal value to a function\nthat expects an enum.\n\nExample:\n\n```lua\n--- @enum Level\nlocal Foo = {\n Info = 1,\n Error = 2,\n}\n\n--- @param l Level\nfunction print_level(l) end\n\nprint_level(1 --[[ Hint: Level.Info ]])\n```",
"config.gluals.hint.indexHint.description": "Show named array indexes.\n\nExample:\n\n```lua\nlocal array = {\n [1] = 1, -- [name]\n}\n\nprint(array[1] --[[ Hint: name ]])\n```",
"config.gluals.hint.localHint.description": "Show types of local variables.",
"config.gluals.hint.metaCallHint.description": "Show hint when calling an object results in a call to\nits meta table's `__call` function.",
"config.gluals.hint.overrideHint.description": "Show methods that override functions from base class.",
"config.gluals.hint.paramHint.description": "Show parameter names in function calls and parameter types in function definitions.",
"config.gluals.hover.enable.description": "Enable showing documentation on hover.",
"config.gluals.inlineValues.enable.description": "Show inline values during debug.",
"config.gluals.references.enable.description": "Enable searching for symbol usages.",
"config.gluals.references.fuzzySearch.description": "Use fuzzy search when searching for symbol usages\nand normal search didn't find anything.",
"config.gluals.references.shortStringSearch.description": "Also search for usages in strings.",
"config.gluals.semanticTokens.enable.description": "Enable semantic tokens.",
"config.gluals.semanticTokens.renderDocumentationMarkup.description": "Render Markdown/RST in documentation. Set `doc.syntax` for this option to have effect.",
"config.gluals.strict.inferredTypeMismatch.description": "Report type mismatch diagnostics for inferred values when strict mode is enabled.",
"config.gluals.workspace.enableIsolation.description": "Whether multi-root workspaces should remain isolated.\n\nWhen false, workspace configs are merged into one global baseline\n(first workspace config wins scalar conflicts, arrays are unioned), while\nlocal workspace configs can still override file-scoped behavior.",
"config.gluals.workspace.enableReindex.description": "Enable full project reindex after changing a file.",
"config.gluals.workspace.reindexDuration.description": "Delay between changing a file and full project reindex, in milliseconds.",
"config.gluals.workspace.useDefaultIgnores.description": "Whether to apply default ignore directories. Set to false to disable\ndefault exclusions like E2 files and test directories.",
"config.gmod.debugger.autoUpdateRdb.description": "Automatically prompt to update `gm_rdb` and `rdb_client` (the GMod debugger modules) when an outdated version is detected during the background update check.",
"config.lua.trace.server.description": "Traces the communication between VSCode and the EmmyLua language server in the Output view. Default is `off`",
"debug.gmod.args": "Arguments passed to launched program",
"debug.gmod.attach.desc": "Attach to a running Garry's Mod remote debugger",
"debug.gmod.attach.label": "GMod: Attach to gm_rdb",
"debug.gmod.attach.name": "GMod: Attach",
"debug.gmod.cwd": "Working directory for launched program",
"debug.gmod.host": "Debugger host to connect to",
"debug.gmod.launch.desc": "Launch a program and attach to gm_rdb over TCP",
"debug.gmod.launch.label": "GMod: Launch and Attach",
"debug.gmod.launch.name": "GMod: Launch and Attach",
"debug.gmod.port": "Debugger port to connect to",
"debug.gmod.program": "Program to launch before connecting to gm_rdb",
"debug.gmod.sourceFileMap": "Optional source file mappings from local path to remote Lua path",
"debug.gmod.sourceRoot": "Lua source root directory",
"debug.gmod.stopOnEntry": "Stop when the debuggee emits entry pause",
"debug.gmod.stopOnError": "Pause execution when gm_rdb reports a Lua runtime error",
"view.gmodEntityExplorer.title": "Entity Explorer",
"view.gmodEntityExplorer.welcome": "Connect debugger to see entities.",
"view.gmodErrors.title": "Errors",
"view.gmodErrors.welcome": "No errors detected in this debug session."
}