Skip to content

Commit

Permalink
(master) fix shrs_vi build error
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPicklePinosaur committed Apr 29, 2023
1 parent 22bd432 commit d2400d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shrs_vi/src/grammar.lalrpop
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub Motion: Motion = {
"$" => Motion::End,
"^" => Motion::Start,
"0" => Motion::Start, // currently implemeting 0 as same as ^
"f" <c:r"[a-zA-Z0-9]"> => Motion::Find(c.chars().next().unwrap()),
"f" <c:r"[a-zA-Z]"> => Motion::Find(c.chars().next().unwrap()),
};

pub Action: Action = {
Expand Down

0 comments on commit d2400d1

Please sign in to comment.