aboutsummaryrefslogtreecommitdiff
path: root/src/input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/input.rs')
-rw-r--r--src/input.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/input.rs b/src/input.rs
index 1e8e083..54065ac 100644
--- a/src/input.rs
+++ b/src/input.rs
@@ -170,7 +170,6 @@ fn handle_editing_input(
})
.unwrap(),
);
-
app.make_request();
} else {
app.error = Some("No URL provided for open command".to_string());
@@ -187,6 +186,10 @@ fn handle_editing_input(
app.make_request();
},
+ Command::Help => {
+ app.set_url(Url::parse("gemini://gem.rest/projects/sydney.gmi").unwrap());
+ app.make_request();
+ }
}
app.input_mode = Mode::Normal;