-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathZeal.sublime-settings
60 lines (56 loc) · 2.17 KB
/
Zeal.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
{
// Zeal executable path. Subject to $PATH resolution.
//
// For Linux: "zeal"
// For Windows: "c:\\Program Files\\Zeal\\zeal.exe"
"zeal_command": "zeal",
// Configure behavior for when none of the docsets below match.
//
// "stop": Do nothing.
// "none": Search for the selected word without a namespace.
// "guess": Try to guess the docset namespace.
"fallback": "none",
// Configure behavior for when multiple docsets were match.
//
// "select": Open a list of all matching docsets to choose from.
// "join": Join all matching docsets for the query.
"multi_match": "select",
// Set of docset configuration that help will be offered for,
// based on the syntax of the current view.
// You can add docsets to this list via `docsets_user`.
//
// The fields are:
// name: The name shown in the popup and used as the default for the others.
// selector: A scope selector used to determine whether this language is active.
// Default: namespace: name.lower().replace(" ", "-")
// namespace: Namespace to use for searching in Zeal.
// Default: f"source.{namespace}`
"docsets": [
{ "name": "ActionScript" },
{ "name": "C" },
{ "name": "Clojure", "selector": "source.clojure - source.clojure.clojurescript" },
{ "name": "ClojureScript", "selector": "source.clojurescript, source.clojure.clojurescript", "namespace": "cljs" },
{ "name": "CMake" },
{ "name": "CSS" },
{ "name": "Go" },
{ "name": "Haskell" },
{ "name": "HTML", "selector": "text.html" },
{ "name": "Java" },
{ "name": "JavaScript", "selector": "source.js" },
{ "name": "LaTeX", "selector": "text.tex.latex" },
{ "name": "LESS", "selector": "source.css.less" },
{ "name": "Lua" },
{ "name": "Php" },
{ "name": "Python" },
{ "name": "Rust" },
{ "name": "SASS", "selector": "source.sass" },
{ "name": "SCSS", "selector": "source.scss" },
{ "name": "Sublime Text", "selector": "source.json.sublime, source.yaml.sublime" },
],
// Entries in this list will be added
// to the `docsets` set above.
// Docsets with the same name override.
"docsets_user": [
// { "name": "Sublime Text", "selector": "source.json.sublime, source.yaml.sublime, source.python" },
],
}