This repository has been archived by the owner on Jan 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMarkLogic.sublime-settings
79 lines (58 loc) · 1.93 KB
/
MarkLogic.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
// settings for Xcc connection
"xcc": {
// timeout in seconds for xcc connections
// can be decimal numbers ex: "1.5"
"timeout": "1",
// Use Settings from Roxy's properties files
// If this is not a Roxy project then the setttings above will be used
"use_roxy_settings": true,
// The roxy environment configuration to use
// Valid choices are usually local, dev, prod but may vary
"roxy_environment": "local",
// MarkLogic hostname
"ml_host": "localhost",
// Xcc port to communicate with for running queries
"xcc_port": "8000",
// The content database to use when evaluating queries
"content_database": "Documents",
// The modules database to use when evaluating queries
"modules_database": "Modules",
// user name to use when authenticating to xcc
"user": "admin",
// password name to use when authenticating to xcc
"password": "admin",
// Whether or not to use https when communicating with Xcc
"use_https": false,
// Local Paths to search for your xquery modules
"search_paths": [],
// xquery output options that you want applied when running your query
// see: http://docs.marklogic.com/guide/xquery/langoverview#id_71572
"output_options": [
"indent=yes",
"indent-untyped=yes"
]
},
// LINT settings
"lint": {
// Automatically lint on edit (Sublime Text 3 only).
"lint_on_edit": false,
// Configurable duration before re-linting.
"lint_on_edit_timeout": 1,
// Automatically lint when a file is loaded.
"lint_on_load": false,
// Automatically lint when a file is saved.
"lint_on_save": true,
// Highlight errors when selected.
"highlight_selected_regions": true,
// scroll to reveal any errors found
"scroll_to_error": false
},
"autocomplete": {
// Enables autocomplete of MarkLogic's builtin functions
"enable_marklogic_functions": true
},
// enables debugging output in the console window (ctrl + ` to open console)
"debug": false,
"ml_version": 8
}