We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a12a403 commit 7c742fdCopy full SHA for 7c742fd
src/app.rs
@@ -65,7 +65,11 @@ impl App {
65
focus: Focus::Jobs,
66
jobs: Vec::new(),
67
_job_watcher: JobWatcherHandle::new(sender.clone(), Duration::from_secs(2)),
68
- job_list_state: ListState::default(),
+ job_list_state: {
69
+ let mut s = ListState::default();
70
+ s.select(Some(0));
71
+ s
72
+ },
73
job_stdout: Ok("".to_string()),
74
job_stdout_offset: 0,
75
job_stdout_watcher: FileWatcherHandle::new(sender.clone(), Duration::from_secs(2)),
0 commit comments