-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMarkerStack.sublime-settings
More file actions
53 lines (50 loc) · 2.24 KB
/
MarkerStack.sublime-settings
File metadata and controls
53 lines (50 loc) · 2.24 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
// Place your settings in the file "Packages/User/MarkerStack.sublime-settings",
// which overrides its default settings here.
//
// Note: You may need to re-start Sublime Text in order to get changed
// configuration values to load.
{
// String. Path to SINGLE-Marker Gutter Icon
// ------------------------------------------
// Icon to use for when there is SINGLE Marker on a line.
// This can be any 15x15 .PNG icon. Its background should be transparent.
// Sublime Text uses a gray-scale map, so the color White will be the full
// color below, light gray will be a darker shade of that color, and dark
// gray will be a dark shade of that color.
// These can also be one of the following strings to use icons that are
// built into Sublime Text:
// - "dot"
// - "circle"
// - "bookmark"
"icon_path": "Packages/MarkerStack/marker_single.png",
// String. Path to MULTIPLE-Marker Gutter Icon
// --------------------------------------------
// Icon to use for when there are MULTIPLE Markers on the same line.
"icon_mult_path": "Packages/MarkerStack/marker_multiple.png",
// String. Icon Color
// -------------------
// This must be one of the color strings accepted in the `scope` argument
// of the `View.add_regions()` function documented here:
// https://www.sublimetext.com/docs/api_reference.html#sublime.View.add_regions
// As of build 3148, this list is:
// - "region.redish"
// - "region.orangish"
// - "region.yellowish"
// - "region.greenish"
// - "region.cyanish"
// - "region.bluish"
// - "region.purplish"
// - "region.pinkish"
"icon_color": "region.purplish",
// Animate Scrolling?
// ------------------
// When you POP a Marker, part of what is restored, in addition to the cursor
// position, is the scroll-state of the View (Viewport position) when the
// Marker was created. If that Viewport position was different than than it
// is now, Sublime Text is going to need to scroll the View in order to return
// it to the prior Viewport position. This configuration item determines
// whether that scrolling is animated or not: animated scrolling shows your
// text "swish by" visually (which takes about 1/20th of a second), whereas
// no animation makes the scrolling happen instantly.
"animate_scrolling": false,
}