Merge branch 'fix-default-regex' of https://github.com/alex-huff/kitty

This commit is contained in:
Kovid Goyal 2025-09-28 22:44:56 +05:30
commit 80285b67f1
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -15,7 +15,7 @@
from ..tui.handler import result_handler
DEFAULT_REGEX = r'(?m)^\s*(.+)\s*$'
DEFAULT_REGEX = r'(?m)^\s*(.+?)\s*$'
def load_custom_processor(customize_processing: str) -> Any:
if customize_processing.startswith('::import::'):