- Co-Authored-By
- Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
feat(coder-lite): add Press Enter to log in with GitHub
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
Not deployed through the forge lane
No push, promotion, build, or deploy receipt references this commit (receipts are scanned over a bounded recent window). Changes shipped by full node replacement carry their proof in the release gate receipt instead.
Changed files
-
modified
crates/coder-lite/src/interactive.rs -
modified
crates/coder-lite/src/main.rs
Diff
2 files changed, +41 -3
crates/coder-lite/src/interactive.rs modified +37
@@ -25,6 +25,7 @@ use crossterm::{
| 25 | 25 |
|
| 26 | 26 |
|
| 27 | 27 |
|
| 28 |
|
|
| 28 | 29 |
|
| 29 | 30 |
|
| 30 | 31 |
|
@@ -59,6 +60,8 @@ pub async fn run_tui(options: SessionOptions) -> Result<(), Box<dyn std::error::
| 59 | 60 |
|
| 60 | 61 |
|
| 61 | 62 |
|
| 63 |
|
|
| 64 |
|
|
| 62 | 65 |
|
| 63 | 66 |
|
| 64 | 67 |
|
@@ -205,6 +208,40 @@ pub async fn run_tui(options: SessionOptions) -> Result<(), Box<dyn std::error::
| 205 | 208 |
|
| 206 | 209 |
|
| 207 | 210 |
|
| 211 |
|
|
| 212 |
|
|
| 213 |
|
|
| 214 |
|
|
| 215 |
|
|
| 216 |
|
|
| 217 |
|
|
| 218 |
|
|
| 219 |
|
|
| 220 |
|
|
| 221 |
|
|
| 222 |
|
|
| 223 |
|
|
| 224 |
|
|
| 225 |
|
|
| 226 |
|
|
| 227 |
|
|
| 228 |
|
|
| 229 |
|
|
| 230 |
|
|
| 231 |
|
|
| 232 |
|
|
| 233 |
|
|
| 234 |
|
|
| 235 |
|
|
| 236 |
|
|
| 237 |
|
|
| 238 |
|
|
| 239 |
|
|
| 240 |
|
|
| 241 |
|
|
| 242 |
|
|
| 243 |
|
|
| 244 |
|
|
| 208 | 245 |
|
| 209 | 246 |
|
| 210 | 247 |
|
crates/coder-lite/src/main.rs modified +4 -3
@@ -23,8 +23,8 @@ use tokio::time::{sleep, timeout};
| 23 | 23 |
|
| 24 | 24 |
|
| 25 | 25 |
|
| 26 |
|
|
| 26 | 27 |
|
| 27 |
|
|
| 28 | 28 |
|
| 29 | 29 |
|
| 30 | 30 |
|
@@ -48,8 +48,9 @@ Options:
| 48 | 48 |
|
| 49 | 49 |
|
| 50 | 50 |
|
| 51 |
|
|
| 51 | 52 |
|
| 52 |
|
|
| 53 |
|
|
| 53 | 54 |
|
| 54 | 55 |
|
| 55 | 56 |
|
@@ -72,8 +73,8 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
| 72 | 73 |
|
| 73 | 74 |
|
| 74 | 75 |
|
| 76 |
|
|
| 75 | 77 |
|
| 76 |
|
|
| 77 | 78 |
|
| 78 | 79 |
|
| 79 | 80 |
|