Skip to content

Commit 11148a3

Browse files
author
Budi Irawan
committed
1.9.0
1 parent b2dc7bb commit 11148a3

File tree

1 file changed

+130
-37
lines changed

1 file changed

+130
-37
lines changed

package.json

Lines changed: 130 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-dash",
33
"displayName": "Dash",
44
"description": "Dash and Zeal integration in Visual Studio Code",
5-
"version": "1.8.0",
5+
"version": "1.9.0",
66
"publisher": "deerawan",
77
"icon": "images/dash.png",
88
"galleryBanner": {
@@ -21,7 +21,9 @@
2121
"type": "git",
2222
"url": "https://github.com/deerawan/vscode-dash"
2323
},
24-
"categories": ["Other"],
24+
"categories": [
25+
"Other"
26+
],
2527
"activationEvents": [
2628
"onCommand:extension.dash.all",
2729
"onCommand:extension.dash.specific",
@@ -30,7 +32,8 @@
3032
],
3133
"main": "./out/src/extension",
3234
"contributes": {
33-
"commands": [{
35+
"commands": [
36+
{
3437
"command": "extension.dash.specific",
3538
"title": "Search in Dash for current selection"
3639
},
@@ -47,7 +50,8 @@
4750
"title": "Search in Dash for a custom string"
4851
}
4952
],
50-
"keybindings": [{
53+
"keybindings": [
54+
{
5155
"command": "extension.dash.specific",
5256
"key": "ctrl+h",
5357
"mac": "ctrl+h",
@@ -96,14 +100,18 @@
96100
"items": {
97101
"type": "string"
98102
},
99-
"default": ["clojure"]
103+
"default": [
104+
"clojure"
105+
]
100106
},
101107
"dash.docset.coffee": {
102108
"type": "array",
103109
"items": {
104110
"type": "string"
105111
},
106-
"default": ["coffee"]
112+
"default": [
113+
"coffee"
114+
]
107115
},
108116
"dash.docset.cpp": {
109117
"type": "array",
@@ -126,56 +134,77 @@
126134
"items": {
127135
"type": "string"
128136
},
129-
"default": ["net", "mono", "unity3d"]
137+
"default": [
138+
"net",
139+
"mono",
140+
"unity3d"
141+
]
130142
},
131143
"dash.docset.dart": {
132144
"type": "array",
133145
"items": {
134146
"type": "string"
135147
},
136-
"default": ["dartlang", "polymerdart", "angulardart"]
148+
"default": [
149+
"dartlang",
150+
"polymerdart",
151+
"angulardart"
152+
]
137153
},
138154
"dash.docset.elixir": {
139155
"type": "array",
140156
"items": {
141157
"type": "string"
142158
},
143-
"default": ["elixir"]
159+
"default": [
160+
"elixir"
161+
]
144162
},
145163
"dash.docset.elm": {
146164
"type": "array",
147165
"items": {
148166
"type": "string"
149167
},
150-
"default": ["elm"]
168+
"default": [
169+
"elm"
170+
]
151171
},
152172
"dash.docset.erlang": {
153173
"type": "array",
154174
"items": {
155175
"type": "string"
156176
},
157-
"default": ["erlang"]
177+
"default": [
178+
"erlang"
179+
]
158180
},
159181
"dash.docset.go": {
160182
"type": "array",
161183
"items": {
162184
"type": "string"
163185
},
164-
"default": ["go", "godoc"]
186+
"default": [
187+
"go",
188+
"godoc"
189+
]
165190
},
166191
"dash.docset.haskell": {
167192
"type": "array",
168193
"items": {
169194
"type": "string"
170195
},
171-
"default": ["haskell"]
196+
"default": [
197+
"haskell"
198+
]
172199
},
173200
"dash.docset.haml": {
174201
"type": "array",
175202
"items": {
176203
"type": "string"
177204
},
178-
"default": ["haml"]
205+
"default": [
206+
"haml"
207+
]
179208
},
180209
"dash.docset.html": {
181210
"type": "array",
@@ -217,7 +246,9 @@
217246
"items": {
218247
"type": "string"
219248
},
220-
"default": ["jade"]
249+
"default": [
250+
"jade"
251+
]
221252
},
222253
"dash.docset.java": {
223254
"type": "array",
@@ -291,7 +322,9 @@
291322
"items": {
292323
"type": "string"
293324
},
294-
"default": ["react"]
325+
"default": [
326+
"react"
327+
]
295328
},
296329
"dash.docset.julia": {
297330
"type": "array",
@@ -307,21 +340,28 @@
307340
"items": {
308341
"type": "string"
309342
},
310-
"default": ["less"]
343+
"default": [
344+
"less"
345+
]
311346
},
312347
"dash.docset.lua": {
313348
"type": "array",
314349
"items": {
315350
"type": "string"
316351
},
317-
"default": ["lua", "corona"]
352+
"default": [
353+
"lua",
354+
"corona"
355+
]
318356
},
319357
"dash.docset.markdown": {
320358
"type": "array",
321359
"items": {
322360
"type": "string"
323361
},
324-
"default": ["markdown"]
362+
"default": [
363+
"markdown"
364+
]
325365
},
326366
"dash.docset.objective-c": {
327367
"type": "array",
@@ -347,7 +387,10 @@
347387
"items": {
348388
"type": "string"
349389
},
350-
"default": ["perl", "manpages"]
390+
"default": [
391+
"perl",
392+
"manpages"
393+
]
351394
},
352395
"dash.docset.php": {
353396
"type": "array",
@@ -386,14 +429,18 @@
386429
"items": {
387430
"type": "string"
388431
},
389-
"default": ["processing"]
432+
"default": [
433+
"processing"
434+
]
390435
},
391436
"dash.docset.puppet": {
392437
"type": "array",
393438
"items": {
394439
"type": "string"
395440
},
396-
"default": ["puppet"]
441+
"default": [
442+
"puppet"
443+
]
397444
},
398445
"dash.docset.python": {
399446
"type": "array",
@@ -421,56 +468,84 @@
421468
"items": {
422469
"type": "string"
423470
},
424-
"default": ["r"]
471+
"default": [
472+
"r"
473+
]
425474
},
426475
"dash.docset.ruby": {
427476
"type": "array",
428477
"items": {
429478
"type": "string"
430479
},
431-
"default": ["ruby", "rubygems", "rails"]
480+
"default": [
481+
"ruby",
482+
"rubygems",
483+
"rails"
484+
]
432485
},
433486
"dash.docset.rust": {
434487
"type": "array",
435488
"items": {
436489
"type": "string"
437490
},
438-
"default": ["rust"]
491+
"default": [
492+
"rust"
493+
]
439494
},
440495
"dash.docset.sass": {
441496
"type": "array",
442497
"items": {
443498
"type": "string"
444499
},
445-
"default": ["sass", "compass", "bourbon", "neat", "susy", "css"]
500+
"default": [
501+
"sass",
502+
"compass",
503+
"bourbon",
504+
"neat",
505+
"susy",
506+
"css"
507+
]
446508
},
447509
"dash.docset.scala": {
448510
"type": "array",
449511
"items": {
450512
"type": "string"
451513
},
452-
"default": ["scala", "akka", "playscala"]
514+
"default": [
515+
"scala",
516+
"akka",
517+
"playscala"
518+
]
453519
},
454520
"dash.docset.shellscript": {
455521
"type": "array",
456522
"items": {
457523
"type": "string"
458524
},
459-
"default": ["bash", "manpages"]
525+
"default": [
526+
"bash",
527+
"manpages"
528+
]
460529
},
461530
"dash.docset.sql": {
462531
"type": "array",
463532
"items": {
464533
"type": "string"
465534
},
466-
"default": ["mysql", "sqlite", "psql"]
535+
"default": [
536+
"mysql",
537+
"sqlite",
538+
"psql"
539+
]
467540
},
468541
"dash.docset.stylus": {
469542
"type": "array",
470543
"items": {
471544
"type": "string"
472545
},
473-
"default": ["stylus"]
546+
"default": [
547+
"stylus"
548+
]
474549
},
475550
"dash.docset.swift": {
476551
"type": "array",
@@ -491,35 +566,47 @@
491566
"items": {
492567
"type": "string"
493568
},
494-
"default": ["tcl"]
569+
"default": [
570+
"tcl"
571+
]
495572
},
496573
"dash.docset.typescript": {
497574
"type": "array",
498575
"items": {
499576
"type": "string"
500577
},
501-
"default": ["typescript", "javascript"]
578+
"default": [
579+
"typescript",
580+
"javascript"
581+
]
502582
},
503583
"dash.docset.yaml": {
504584
"type": "array",
505585
"items": {
506586
"type": "string"
507587
},
508-
"default": ["chef", "ansible"]
588+
"default": [
589+
"chef",
590+
"ansible"
591+
]
509592
},
510593
"dash.docset.haxe": {
511594
"type": "array",
512595
"items": {
513596
"type": "string"
514597
},
515-
"default": ["haxe"]
598+
"default": [
599+
"haxe"
600+
]
516601
},
517602
"dash.docset.terraform": {
518603
"type": "array",
519604
"items": {
520605
"type": "string"
521606
},
522-
"default": ["terraform"]
607+
"default": [
608+
"terraform"
609+
]
523610
}
524611
}
525612
}
@@ -550,7 +637,13 @@
550637
"vscode": "0.10.x"
551638
},
552639
"lint-staged": {
553-
"*.{ts,json}": ["prettier", "git add"],
554-
"*.ts": ["tslint --fix", "tslint"]
640+
"*.{ts,json}": [
641+
"prettier",
642+
"git add"
643+
],
644+
"*.ts": [
645+
"tslint --fix",
646+
"tslint"
647+
]
555648
}
556649
}

0 commit comments

Comments
 (0)