Skip to content

Commit

Permalink
fix: forgor to tell helix to display sequence labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Vulpesx authored and MattCheely committed Aug 24, 2024
1 parent 6764c33 commit bb8a44c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helix-term/src/keymap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl KeyTrieNode {
cmd.doc()
}
KeyTrie::Node(n) => &n.name,
KeyTrie::Sequence(..) => KeyTrie::DEFAULT_SEQUENCE_LABEL,
KeyTrie::Sequence(l, ..) => l,
};
match body.iter().position(|(_, d)| d == &desc) {
Some(pos) => {
Expand Down

0 comments on commit bb8a44c

Please sign in to comment.