- Moved prettify_json and lsp_completer plugins to sub categories - Add filter_out_loaded_files to prevent opening already-loaded files - Refactor code events into single events module - Fix signal blocking during file load operations - Include READONLY state in source view lifecycle handling
14 lines
207 B
Python
14 lines
207 B
Python
# Python imports
|
|
from dataclasses import dataclass
|
|
|
|
# Lib imports
|
|
|
|
# Application imports
|
|
from .code_event import CodeEvent
|
|
|
|
|
|
|
|
@dataclass
|
|
class UnregisterProviderEvent(CodeEvent):
|
|
provider_name: str = ""
|