-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (37 loc) · 1.25 KB
/
manifest.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
{
"required_api_version": "^2.0.0",
"name": "Git Repository Opener",
"description": "An ulauncher extension to open your local git repositories with your favorite editor.",
"developer_name": "Pascal Betting",
"icon": "images/icon.png",
"preferences": [
{
"id": "keyword",
"type": "keyword",
"name": "Git Repository Opener",
"description": "The keyword to start the Git Repository Opener extension.",
"default_value": "r"
},
{
"id": "search_path",
"type": "input",
"name": "Base search path for repositories",
"description": "The path under which the repositories should be searched. The use of environment variables is allowed.",
"default_value": "$HOME/repos"
},
{
"id": "intellij_command",
"type": "input",
"name": "Intellij command",
"description": "The command to open Intellij. You can use Intellij community or Intellij ultimate.",
"default_value": "intellij-idea-community"
},
{
"id": "vscode_command",
"type": "input",
"name": "Visual Studio Code command",
"description": "The command to open Visual Studio Code. You can use the normal or the insiders version.",
"default_value": "code-insiders"
}
]
}