forked from facelessuser/ScopeHunter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscope_hunter.sublime-settings
More file actions
84 lines (61 loc) · 2.05 KB
/
scope_hunter.sublime-settings
File metadata and controls
84 lines (61 loc) · 2.05 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
{
///////////////////////////
// Dev Options
///////////////////////////
"debug": false,
///////////////////////////
// View Options
///////////////////////////
// Show popup tooltip with info about scope
"show_popup": false,
// Show scope in status bar
"show_statusbar": false,
// Show scope in auto-popup panel
"show_panel": true,
// Show scopes in console
"console_log": false,
///////////////////////////
// Tooltip Configurations
///////////////////////////
// Override theme. Use forward slashes.
"tooltip_theme": "ScopeHunter/tt_theme",
///////////////////////////
// Additional Scope Info
///////////////////////////
// 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,
// When showing a color with alpha transparency,
// Simulate what the color would look like in sublime
// by mixing the relevant background color,
"show_simulated_alpha_colors": false,
// Show the selector names and scopes
// responsible for the color and styles
"selectors": false,
// Show current syntax and color scheme paths
// (click to open if using tooltips)
"file_paths": false,
// Highlight scope extent in view
"highlight_extent": true,
///////////////////////////
// Highlight Configuration
///////////////////////////
// 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
}