Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i keep typing quit without the / in front #3083

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions aider/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import signal
import time
import webbrowser
import sys
from collections import defaultdict
from dataclasses import dataclass
from datetime import datetime
Expand Down Expand Up @@ -484,6 +485,9 @@ def _(event):
@kb.add("enter", eager=True, filter=~is_searching)
def _(event):
"Handle Enter key press"
buffer_text = event.current_buffer.text
if buffer_text.strip() == "quit":
sys.exit()
if self.multiline_mode:
# In multiline mode, Enter adds a newline
event.current_buffer.insert_text("\n")
Expand Down