-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathDebugger.sublime-settings
63 lines (47 loc) · 2.49 KB
/
Debugger.sublime-settings
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
{
// Open the debugger automatically when a project that is set up for debugging
"open_at_startup": true,
// Always keep the debugger panel visible
"always_keep_visible": false,
// Sets the entire scale of the UI, defaults to font_size
"ui_scale": null,
// Only change this if your font size does not match the panel size (overlapping text, panels not lining up, etc)
"internal_font_scale": 1,
// Which external terminal should be used when an adapter requests an external terminal
// "platform" (default) uses Terminal on MacOS, CMD (Not tested) on Windows, (Unimplemented) on Linux
// "terminus" Opens a new terminal view using terminus. The terminus package must be installed https://github.com/randy3k/Terminus
"external_terminal": "terminus",
// Controls the minimum height of the debugger output panels in lines
"minimum_console_height": 10,
// Additional console logs and some new features are locked behind this flag
"development": false,
// Sets a specific path for node if not set adapters that require node to run will use whatever is in your path
"node": null,
// Output panels outside of the debugger can be integrated into the tabbed debugger interface (note: In some cases output panels may cause issues and not work correctly depending on who owns them)
// An example for interating the Diagnostics panel of LSP and a Terminus output panel.
//
// "integrated_output_panels": {
// "diagnostics": {
// "name": "Diagnostics",
// },
// "Terminus": {
// "name": "Terminal",
// "position": "bottom",
// }
// }
"integrated_output_panels": {},
// Some debug adapters require certain packages to be installed via package control. If you have installed these package outside of package control then you can add them to this list and they will be treated as if they are installed.
"installed_packages": [],
// Global debugger configurations that are accessible from every project
"global_debugger_configurations": [],
// Global debugger tasks that are accessible from every project
"global_debugger_tasks": [],
// Global debugger compounds that are accessible from every project
"global_debugger_compounds": [],
// Personal access token used for github api requests. If you are testing installing adapters you may need to set this to have higher api limits if you are getting 429 errors.
"github_personal_access_token": null,
// Which lldb library to use
"lldb_library": null,
// Sets a specific path for dlv if not set go will use whatever is in your path
"go_dlv": null,
}