-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
142 lines (142 loc) · 5.29 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
{
"name": "fortran-ls",
"displayName": "FORTRAN IntelliSense",
"description": "VSCode interface to the FORTRAN language server",
"author": "Chris Hansen",
"license": "MIT",
"version": "0.6.2",
"publisher": "hansec",
"repository": {
"type": "git",
"url": "https://github.com/hansec/vscode-fortran-ls"
},
"bugs": {
"url": "https://github.com/hansec/vscode-fortran-ls/issues"
},
"keywords": [
"fortran",
"intellisense",
"autocompletion",
"ide"
],
"categories": [
"Programming Languages"
],
"engines": {
"vscode": "^1.26.1"
},
"activationEvents": [
"onLanguage:fortran",
"onLanguage:fortran-modern",
"onLanguage:fortran_fixed-form",
"onLanguage:FortranFreeForm"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Fortran IntelliSense",
"properties": {
"fortran-ls.executablePath": {
"scope": "resource",
"type": "string",
"default": "fortls",
"description": "Path to the Fortran language server (fortls)."
},
"fortran-ls.includeSymbolMem": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Include type members in document outline (also used for 'Go to Symbol in File')"
},
"fortran-ls.autocompletePrefix": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Filter autocomplete suggestions with variable prefix"
},
"fortran-ls.lowercaseIntrinsics": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Use lowercase for intrinsics and keywords in autocomplete requests."
},
"fortran-ls.incrementalSync": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Use incremental synchronization for file changes."
},
"fortran-ls.variableHover": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Show hover information for variables."
},
"fortran-ls.hoverSignature": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Show signature information in hover for argument (also enables 'variableHover')."
},
"fortran-ls.useSignatureHelp": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Use signature help instead of snippets when available."
},
"fortran-ls.notifyInit": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Notify when workspace initialization is complete (requires v1.7.0+)."
},
"fortran-ls.enableCodeActions": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Enable experimental code actions (requires v1.7.0+)."
},
"fortran-ls.disableDiagnostics": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Disable diagnostics (requires v1.12.0+)."
},
"fortran-ls.maxLineLength": {
"scope": "resource",
"type": "number",
"default": -1,
"description": "Maximum line length (requires v1.8.0+)."
},
"fortran-ls.maxCommentLineLength": {
"scope": "resource",
"type": "number",
"default": -1,
"description": "Maximum comment line length (requires v1.8.0+)."
},
"fortran-ls.displayVerWarning": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Provides notifications when the underlying language server is out of date."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -w -p ./",
"update-vscode": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"vscode-languageclient": "5.1.1"
},
"devDependencies": {
"@types/node": "8.10.29",
"typescript": "3.1.6",
"vscode": "1.1.21"
}
}