Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
22e1eea9
Unverified
Commit
22e1eea9
authored
Apr 24, 2022
by
Nicolas Giard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: auto launch terminal group on start
parent
05c90434
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
65 additions
and
2 deletions
+65
-2
extensions.json
.vscode/extensions.json
+1
-2
tasks.json
.vscode/tasks.json
+61
-0
dev.code-workspace
dev.code-workspace
+3
-0
No files found.
.vscode/extensions.json
View file @
22e1eea9
{
"recommendations"
:
[
"EditorConfig.editorconfig"
,
"dbaeumer.vscode-eslint"
,
"mrmlnc.vscode-puglint"
,
"dbaeumer.vscode-eslint"
]
}
.vscode/tasks.json
0 → 100644
View file @
22e1eea9
{
"version"
:
"2.0.0"
,
"presentation"
:
{
"echo"
:
false
,
"reveal"
:
"always"
,
"focus"
:
false
,
"panel"
:
"dedicated"
,
"showReuseMessage"
:
true
},
"tasks"
:
[
{
"label"
:
"Create terminals"
,
"dependsOn"
:
[
"Server"
,
"UX"
],
//
Mark
as
the
default
build
task
so
cmd/ctrl+shift+b
will
create
them
"group"
:
{
"kind"
:
"build"
,
"isDefault"
:
true
},
//
Try
start
the
task
on
folder
open
"runOptions"
:
{
"runOn"
:
"folderOpen"
}
},
{
//
The
name
that
shows
up
in
terminal
tab
"label"
:
"Server"
,
//
The
task
will
launch
a
shell
"type"
:
"shell"
,
"command"
:
"/bin/zsh"
,
"args"
:
[],
//
Set
the
shell
type
"options"
:
{
"cwd"
:
"/workspace"
},
//
Mark
as
a
background
task
to
avoid
the
spinner
animation
on
the
terminal
tab
"isBackground"
:
true
,
"problemMatcher"
:
[],
//
Create
the
tasks
in
a
terminal
group
"presentation"
:
{
"group"
:
"shell-group"
}
},
{
"label"
:
"UX"
,
"type"
:
"shell"
,
"command"
:
"/bin/zsh"
,
"args"
:
[],
"options"
:
{
"cwd"
:
"/workspace/ux"
,
},
"isBackground"
:
true
,
"problemMatcher"
:
[],
"presentation"
:
{
"group"
:
"shell-group"
}
}
]
}
dev.code-workspace
View file @
22e1eea9
...
...
@@ -7,6 +7,9 @@
{
"name": "ux",
"path": "ux"
},
{
"path": "."
}
],
"settings": {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment