This repository has been archived by the owner on Oct 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTossFile.sublime-settings
60 lines (55 loc) · 1.69 KB
/
TossFile.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
{
// Example path settings
// ---------------------
//
// *nix
// ----
//
// "paths": [
// {
// "/home/source1/": "/home/destination1/"
// },
// {
// "/home/source2/": "/home/destination2/"
// }
// ]
//
// Windows
// -------
//
// "paths": [
// {
// "C:\\home\\source1\\": "C:\\home\\destination1\\"
// },
// {
// "C:\\home\\source2\\": "C:\\home\\destination2\\"
// }
// ]
"paths": [
],
// Controls how long the visual status indicator appears
// in the footer of the file the command was run in (in seconds)
//
// NOTE:
// - If you put quotes around this number it will be ignored and default back to 5 seconds
// - If you set this value to 0 it will be ignored and default back to 5 seconds
"statusTimeout": 5,
// Replace an exisiting file at the output location if it already exists
"replaceIfExists": true,
// List of extensions to ignore even if a path match is found
// Example: [".jar", ".class"]
"extensionExcludes": [
],
// List of file names to ignore even if a path match is found
// Example: ["Fileone.class", "Filetwo.java"]
"nameExcludes": [
],
// List of output paths to ignore even if a path match is found
// Example (based on *nix "paths" above): ["/home/destination1/build/", "home/destination1/topsecret/"]
"outputPathExcludes": [
],
// List of input paths to ignore even if a path match is found
// Example (based on *nix "paths" above): ["/home/source1/build/", "home/source1/topsecret/"]
"inputPathExcludes": [
]
}