Skip to content

Commit

Permalink
Enable block cursor without Vintage / Vintageous
Browse files Browse the repository at this point in the history
  • Loading branch information
karlhorky committed Dec 9, 2015
1 parent f9d4f2d commit 7f872fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SublimeBlockCursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def on_selection_modified(self, view):
is_widget = view.settings().get('is_widget')
command_mode = view.settings().get('command_mode')

if is_widget or not self.vi_enabled or (self.vi_enabled and not(command_mode)):
if is_widget or (self.vi_enabled and not(command_mode)):
view.erase_regions('BlockCursorListener')
return

Expand Down

0 comments on commit 7f872fe

Please sign in to comment.