-
Notifications
You must be signed in to change notification settings - Fork 268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can cooperate with Atom Terminals (allows inputs) #2337
base: master
Are you sure you want to change the base?
Changes from all commits
c8ec772
a079a49
1ad29d3
f30474a
25437a0
2289627
aa52f28
0a4d3b2
1e5ab4b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
name: CI | ||
on: | ||
- pull_request | ||
- push | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
Test: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,6 +71,38 @@ | |
} | ||
} | ||
}, | ||
"consumedServices": { | ||
"runInTerminal": { | ||
"description": "Allow to run commands in platformio-ide-terminal.", | ||
"versions": { | ||
"0.14.5": "consumeTerminal" | ||
} | ||
}, | ||
"platformioIDETerminal": { | ||
"description": "Allow to run commands in platformio-ide-terminal.", | ||
"versions": { | ||
"^1.1.0": "consumeTerminal" | ||
} | ||
}, | ||
"terminusTerminal": { | ||
"description": "Allow to run commands in terminus.", | ||
"versions": { | ||
"^1.1.1": "consumeTerminal" | ||
} | ||
}, | ||
"terminationTerminal": { | ||
"description": "Allow to run commands in termination.", | ||
"versions": { | ||
"^1.1.0": "consumeTerminal" | ||
} | ||
}, | ||
"terminal": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This allow almost any terminal including old ones that haven't been updated in a while. If we only want currently maintained terminals we can just consume There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It doesn't hurt to support them if this doesn't break other things. Regarding package curation, I have some good plans which will solve many issues. |
||
"description": "Allow to run commands in terminal.", | ||
"versions": { | ||
"^1.0.0": "consumeTerminal" | ||
} | ||
} | ||
}, | ||
"keywords": [ | ||
"script", | ||
"runner", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a way to make sure that this has successfully run?