Skip to content

Commit

Permalink
Fixup for previous cursorshapes commit (#1900).
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanslenders committed Sep 25, 2024
1 parent df4e244 commit c84d874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prompt_toolkit/cursor_shapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def get_cursor_shape(self, application: Application[Any]) -> CursorShape:
InputMode.INSERT_MULTIPLE,
}:
return CursorShape.BEAM
if application.vi_state.input_mode == {
if application.vi_state.input_mode in {
InputMode.REPLACE,
InputMode.REPLACE_SINGLE,
}:
Expand Down

0 comments on commit c84d874

Please sign in to comment.