-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
144 lines (144 loc) · 3.53 KB
/
package.json
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "ide-fortran",
"main": "./lib/main",
"version": "0.4.0",
"description": "Fortran language support for Atom-IDE.",
"keywords": [
"FORTRAN",
"autocomplete",
"ide"
],
"repository": "https://github.com/hansec/ide-fortran",
"license": "MIT",
"engines": {
"atom": ">=1.21.0"
},
"dependencies": {
"atom-languageclient": "^0.9.0"
},
"enhancedScopes": [
"source.fortran.free",
"source.fortran.fixed"
],
"configSchema": {
"fortlsPath": {
"title": "Fortran Language Server Path",
"order": 1,
"type": "string",
"default": "fortls",
"description": "Absolute path to ```fortls``` executable."
},
"include_symbol_mem": {
"type": "boolean",
"default": true,
"order": 2,
"title": "Type member symbols",
"description": "Include type members in document outline"
},
"autocomplete_prefix": {
"type": "boolean",
"default": false,
"order": 3,
"title": "Filter autocomplete suggestions",
"description": "Filter autocomplete suggestions with variable prefix"
},
"lowercase_intrinsics": {
"type": "boolean",
"default": false,
"order": 4,
"title": "Lowercase intrinsics",
"description": "Use lowercase for intrinsics and keywords in autocomplete requests"
},
"incremental_sync": {
"type": "boolean",
"default": true,
"order": 5,
"title": "Incremental Synchronization",
"description": "Use incremental synchronization for file changes"
},
"variable_hover": {
"type": "boolean",
"default": false,
"order": 6,
"title": "Variable hover",
"description": "Show hover information for variables"
},
"use_signature_help": {
"type": "boolean",
"default": true,
"order": 7,
"title": "Signature Help",
"description": "Use signature help instead of snippets when available"
},
"notify_init": {
"type": "boolean",
"default": false,
"order": 8,
"title": "Initialization notifications",
"description": "Notify when workspace initialization is complete (requires v1.7.0+)"
},
"debug": {
"type": "boolean",
"default": false,
"order": 9,
"title": "Debugging",
"description": "Provides some debug notifications such as Language Server launch and close"
},
"displayVerWarning": {
"type": "boolean",
"default": true,
"order": 10,
"title": "Display warnings when fortls is outdated",
"description": "Provides notification when the underlying ```fortran-language-server``` is out of date"
}
},
"consumedServices": {
"linter-indie": {
"versions": {
"2.0.0": "consumeLinterV2"
}
},
"datatip": {
"versions": {
"0.1.0": "consumeDatatip"
}
},
"signature-help": {
"versions": {
"0.1.0": "consumeSignatureHelp"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provideAutocomplete"
}
},
"code-format.range": {
"versions": {
"0.1.0": "provideCodeFormat"
}
},
"code-highlight": {
"versions": {
"0.1.0": "provideCodeHighlight"
}
},
"definitions": {
"versions": {
"0.1.0": "provideDefinitions"
}
},
"find-references": {
"versions": {
"0.1.0": "provideFindReferences"
}
},
"outline-view": {
"versions": {
"0.1.0": "provideOutlines"
}
}
}
}