From d5776ff01793b4d8f2f7499b971eabc5b50319f7 Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Sat, 28 Oct 2023 18:54:32 -0500 Subject: [PATCH 1/2] Fix typo in Config.zig key scan -> keys can --- src/config/Config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index 453913937..2c0e76ee9 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -301,7 +301,7 @@ command: ?[]const u8 = null, /// "ctrl+a", "ctrl+shift+b", "up". Some notes: /// /// - modifiers cannot repeat, "ctrl+ctrl+a" is invalid. -/// - modifiers and key scan be in any order, "shift+a+ctrl" is weird, +/// - modifiers and keys can be in any order, "shift+a+ctrl" is weird, /// but valid. /// - only a single key input is allowed, "ctrl+a+b" is invalid. /// From 934718194bb94f7c02f7b77a742cdec3c8cc6251 Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Sat, 28 Oct 2023 21:17:59 -0500 Subject: [PATCH 2/2] Fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 735530dee..1e5c26762 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ Ghostty supports some features that require shell integration. I am aiming to support many of the features that [Kitty supports for shell integration](https://sw.kovidgoyal.net/kitty/shell-integration/). -The currently support shell integration features in Ghostty: +The currently supported shell integration features in Ghostty: - We do not confirm close for windows where the cursor is at a prompt. - New terminals start in the working directory of the previously focused terminal.