feat: add support for non string keybinding arguments

This commit is contained in:
CJ van den Berg 2024-11-17 22:41:13 +01:00
parent ed843a9baf
commit 43c49125f8
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
4 changed files with 32 additions and 15 deletions

View file

@ -8,7 +8,7 @@ fn peek(str: []const u8, i: usize) error{OutOfBounds}!u8 {
} else return error.OutOfBounds;
}
const ParseError = error{
pub const ParseError = error{
OutOfMemory,
OutOfBounds,
InvalidEscapeSequenceStart,