mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-03 19:24:59 +00:00
refactor: simplify input interruption using placeholder variable
This commit is contained in:
parent
0cb5aca81e
commit
abb3c936f7
1 changed files with 1 additions and 2 deletions
|
@ -202,7 +202,6 @@ class InputOutput:
|
||||||
):
|
):
|
||||||
self.placeholder = None
|
self.placeholder = None
|
||||||
self.never_prompts = set()
|
self.never_prompts = set()
|
||||||
self.interrupted_partial_input = None
|
|
||||||
self.editingmode = editingmode
|
self.editingmode = editingmode
|
||||||
no_color = os.environ.get("NO_COLOR")
|
no_color = os.environ.get("NO_COLOR")
|
||||||
if no_color is not None and no_color != "":
|
if no_color is not None and no_color != "":
|
||||||
|
@ -379,7 +378,7 @@ class InputOutput:
|
||||||
def interrupt_input(self):
|
def interrupt_input(self):
|
||||||
if self.prompt_session and self.prompt_session.app:
|
if self.prompt_session and self.prompt_session.app:
|
||||||
# Store any partial input before interrupting
|
# Store any partial input before interrupting
|
||||||
self.interrupted_partial_input = self.prompt_session.app.current_buffer.text
|
self.placeholder = self.prompt_session.app.current_buffer.text
|
||||||
self.prompt_session.app.exit()
|
self.prompt_session.app.exit()
|
||||||
|
|
||||||
def get_input(
|
def get_input(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue