@@ -1030,7 +1030,7 @@ def _swapcase_line(event: E) -> None:
10301030 buff .transform_current_line (lambda s : s .swapcase ())
10311031
10321032 @handle ("#" , filter = vi_navigation_mode )
1033- def _prev_occurence (event : E ) -> None :
1033+ def _prev_occurrence (event : E ) -> None :
10341034 """
10351035 Go to previous occurrence of this word.
10361036 """
@@ -1043,7 +1043,7 @@ def _prev_occurence(event: E) -> None:
10431043 b .apply_search (search_state , count = event .arg , include_current_position = False )
10441044
10451045 @handle ("*" , filter = vi_navigation_mode )
1046- def _next_occurance (event : E ) -> None :
1046+ def _next_occurrence (event : E ) -> None :
10471047 """
10481048 Go to next occurrence of this word.
10491049 """
@@ -1411,7 +1411,7 @@ def _next_section(event: E) -> TextObject:
14111411 return TextObject (index )
14121412
14131413 @text_object ("f" , Keys .Any )
1414- def _next_occurence (event : E ) -> TextObject :
1414+ def _find_next_occurrence (event : E ) -> TextObject :
14151415 """
14161416 Go to next occurrence of character. Typing 'fx' will move the
14171417 cursor to the next occurrence of character. 'x'.
@@ -1426,7 +1426,7 @@ def _next_occurence(event: E) -> TextObject:
14261426 return TextObject (0 )
14271427
14281428 @text_object ("F" , Keys .Any )
1429- def _previous_occurance (event : E ) -> TextObject :
1429+ def _find_previous_occurrence (event : E ) -> TextObject :
14301430 """
14311431 Go to previous occurrence of character. Typing 'Fx' will move the
14321432 cursor to the previous occurrence of character. 'x'.
0 commit comments