-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharvis-workflow.json
92 lines (92 loc) · 2.7 KB
/
arvis-workflow.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
{
"$schema": "https://raw.githubusercontent.com/jopemachine/arvis-extension-validator/master/workflow-schema.json",
"creator": "importre",
"description": "Highlight your code stored in clipboard",
"name": "arvis-hl",
"readme": "# hl\n- Syntax highlight code in the clipboard\n\n# hl-theme\n- Set default theme\n\n# hl-demo\n- Show highlight demo",
"version": "0.0.6",
"webAddress": "https://github.com/jopemachine/arvis-hl",
"defaultIcon": "icon.png",
"enabled": true,
"platform": [
"darwin"
],
"commands": [
{
"type": "keyword",
"command": "hl-demo",
"title": "Show highlight demo",
"subtitle": "",
"argType": "no",
"actions": [
{
"modifiers": "normal",
"type": "open",
"target": "https://highlightjs.org/static/demo/"
}
]
},
{
"type": "scriptFilter",
"command": "hl-theme",
"title": "Set default theme",
"subtitle": "Search a theme you want",
"scriptFilter": "node ./src/theme.js \"{query}\"",
"runningSubtext": "Searching...",
"withspace": true,
"argType": "required",
"actions": [
{
"modifiers": "normal",
"type": "script",
"script": "node ./src/save-theme.js \"{query}\"",
"actions": [
{
"modifiers": "normal",
"command": "hl",
"title": "Syntax highlight code in the clipboard",
"type": "scriptFilter",
"scriptFilter": "node ./src/index.js \"{query}\"",
"runningSubtext": "Searching...",
"withspace": true,
"actions": [
{
"modifiers": "normal",
"type": "script",
"script": "node ./src/convert.js \"{query}\" \"remove-indent\""
},
{
"modifiers": "cmd",
"type": "script",
"script": "node ./src/convert.js \"{query}\""
}
]
}
]
}
]
},
{
"type": "scriptFilter",
"command": "hl",
"title": "Syntax highlight code in the clipboard",
"subtitle": "Search a language you want",
"scriptFilter": "node ./src/index.js \"{query}\"",
"runningSubtext": "Searching...",
"withspace": true,
"argType": "required",
"actions": [
{
"modifiers": "normal",
"type": "script",
"script": "node ./src/convert.js \"{query}\" \"remove-indent\""
},
{
"modifiers": "cmd",
"type": "script",
"script": "node ./src/convert.js \"{query}\""
}
]
}
]
}