diff options
author | Blaž Hrastnik | 2022-03-14 02:43:52 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-03-14 02:43:52 +0000 |
commit | c94c0d9f1c01344765d564946b43dd5a588cb7b3 (patch) | |
tree | be4a6af75f466bde727198813177f57de8c7e2ec /helix-term | |
parent | 610ce93600d2f193dc76eedba61fffe642eff3fc (diff) |
minor: occurance -> occurrence
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/commands.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 844f6690..1e4f68d0 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -236,14 +236,14 @@ impl MappableCommand { extend_prev_long_word_start, "Extend to beginning of previous long word", extend_next_long_word_end, "Extend to end of next long word", extend_next_word_end, "Extend to end of next word", - find_till_char, "Move till next occurance of char", - find_next_char, "Move to next occurance of char", - extend_till_char, "Extend till next occurance of char", - extend_next_char, "Extend to next occurance of char", - till_prev_char, "Move till previous occurance of char", - find_prev_char, "Move to previous occurance of char", - extend_till_prev_char, "Extend till previous occurance of char", - extend_prev_char, "Extend to previous occurance of char", + find_till_char, "Move till next occurrence of char", + find_next_char, "Move to next occurrence of char", + extend_till_char, "Extend till next occurrence of char", + extend_next_char, "Extend to next occurrence of char", + till_prev_char, "Move till previous occurrence of char", + find_prev_char, "Move to previous occurrence of char", + extend_till_prev_char, "Extend till previous occurrence of char", + extend_prev_char, "Extend to previous occurrence of char", repeat_last_motion, "repeat last motion(extend_next_char, extend_till_char, find_next_char, find_till_char...)", replace, "Replace with new char", switch_case, "Switch (toggle) case", |