Refactor controller architecture and multi-insert state
- Rename ControllerContext to ControllerMessageBus for clarity - Switch ControllerBase to use SingletonRaised - Replace MarkEventsMixin with MarkerManager for multi-cursor editing - Add populate_popup event support for source view context menus - Remove unused swap file events - Moved JSON prettify feature to plugin - Fix event name: "removed_file" -> "remove_file"
This commit is contained in:
@@ -20,10 +20,6 @@ class SearchMixin:
|
||||
if self.is_word_char(prev_char):
|
||||
return False
|
||||
|
||||
# if end_itr.forward_char():
|
||||
# next_char = end_itr.get_char()
|
||||
# if self.is_word_char(next_char):
|
||||
# return False
|
||||
next_char = end_itr.get_char()
|
||||
if self.is_word_char(next_char):
|
||||
return False
|
||||
|
||||
Reference in New Issue
Block a user