Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion helix-term/src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ impl Application {
let editor_view = Box::new(ui::EditorView::new(Keymaps::new(keys)));
compositor.push(editor_view);

let jobs = Jobs::new();

if args.load_tutor {
let path = helix_loader::runtime_file(Path::new("tutor"));
editor.open(&path, Action::VerticalSplit)?;
Expand Down Expand Up @@ -260,7 +262,7 @@ impl Application {
editor,
config,
signals,
jobs: Jobs::new(),
jobs,
lsp_progress: LspProgressMap::new(),
theme_mode,
};
Expand Down