hints: make default regex ignore trailing whitespace
This commit is contained in:
parent
b6f9080486
commit
a1e63ee87c
1 changed files with 1 additions and 1 deletions
|
|
@ -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::'):
|
||||
|
|
|
|||
Loading…
Reference in a new issue