-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharvis-workflow.json
36 lines (36 loc) · 1.45 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
{
"$schema": "https://raw.githubusercontent.com/jopemachine/arvis-extension-validator/master/workflow-schema.json",
"defaultIcon": "icon.png",
"category": "Internet",
"creator": "Patrick Kahl",
"description": "Search vim plugins from vimawesome",
"name": "arvis-vimawesome",
"readme": "# arvis-vimawesome\n\n> Search vim plugins from vimawesome\n\n\n## Install\n\n```\n$ npm install --global arvis-vimawesome\n```\n\n*Requires [Node.js](https://nodejs.org) 4+ and the arvis [Powerpack](https://www.arvisapp.com/powerpack/).*\n\n\n## Usage\n\nIn arvis, type `vim` and your query.\nNormal action `enter ⌅` opens github plugin url in your default browser.\nOn pressing `ctrl ⌃ + enter ⌅` copy `author/pluginname` to clipboard.\n\n\n## License\n\nMIT © [Patrick Kahl](https://github.com/patrickkahl)",
"version": "0.0.2",
"webAddress": "https://github.com/arvis-workflows/arvis-vimawesome",
"enabled": true,
"commands": [
{
"type": "scriptFilter",
"command": "vim",
"title": "Search vim plugins from vimawesome",
"subtitle": "",
"scriptFilter": "node index.js \"{query}\"",
"runningSubtext": "Searching...",
"withspace": true,
"argType": "optional",
"actions": [
{
"modifiers": "normal",
"type": "open",
"target": "{query}"
},
{
"modifiers": "ctrl",
"type": "clipboard",
"text": "{query}"
}
]
}
]
}