-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
scope_hunter.sublime-settings
64 lines (47 loc) · 1.62 KB
/
scope_hunter.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
64
{
///////////////////////////
// Dev Options
///////////////////////////
"debug": false,
///////////////////////////
// Additional Scope Info
///////////////////////////
// Show the scope backtrace (ST >= 4087)
"context_backtrace": true,
// Show scope extent in point format
"extent_points": false,
// Show scope extent in line/char format
"extent_line_char": false,
// Show color and style at the given point
"styling": false,
// Show current syntax and color scheme paths
// (click to open if using tooltips)
"file_paths": false,
///////////////////////////
// Highlight Configuration
///////////////////////////
// Highlight scope extent in view
"highlight_extent": true,
// Scope to use for the color
"highlight_scope": "invalid",
// Highlight style (underline|solid|outline|thin_underline|squiggly|stippled)
"highlight_style": "outline",
///////////////////////////
// Additional Options
///////////////////////////
// Automatically copy scopes to clipboard
"clipboard": false,
// Allow multi-select scope hunting
"multiselect": true,
// Max region size to highlight
"highlight_max_size": 100,
// Use SubNotify plugin messages if installed
"use_sub_notify": true,
///////////////////////////
// Graphics
///////////////////////////
// By default, image border is calculated based on theme background, but if for
// some reason, it isn't sufficient in your popup, set it to any color using
// valid CSS for RGB, HSL, or HWB colors.
"image_border_color": null
}