diff --git a/plugin/core/input_handlers.py b/plugin/core/input_handlers.py index cfd414c4d..8a3b9fdef 100644 --- a/plugin/core/input_handlers.py +++ b/plugin/core/input_handlers.py @@ -85,7 +85,7 @@ def get_list_items(self) -> ListItemsReturn: class DynamicListInputHandler(sublime_plugin.ListInputHandler, metaclass=ABCMeta): """ A ListInputHandler which can update its items while typing in the input field. - Subclasses of PreselectedListInputHandler must not implement the `list_items` method, but can override + Subclasses of DynamicListInputHandler must not implement the `list_items` method, but can override `get_list_items` for the initial list items. The `on_modified` method will be called after a small delay (debounced) whenever changes were made to the input text. You can use this to call the `update` method with a list of `ListInputItem`s to update the list items.