mirror of
https://github.com/Aider-AI/aider.git
synced 2025-12-23 08:48:18 +00:00
commit
183f48a1ec
3 changed files with 1195 additions and 30 deletions
|
|
@ -492,11 +492,21 @@ def expand_glob_patterns(patterns, root="."):
|
|||
|
||||
PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__))
|
||||
log_file = None
|
||||
file_excludelist = ["get_bottom_toolbar", "<genexpr>"]
|
||||
file_excludelist = {
|
||||
"get_bottom_toolbar": True,
|
||||
"<genexpr>": True,
|
||||
"is_active": True,
|
||||
"auto_save_session": True,
|
||||
"input_task": True,
|
||||
"output_task": True,
|
||||
}
|
||||
|
||||
|
||||
def custom_tracer(frame, event, arg):
|
||||
import os
|
||||
try:
|
||||
import os
|
||||
except Exception:
|
||||
return None
|
||||
|
||||
global log_file
|
||||
if not log_file:
|
||||
|
|
@ -1446,7 +1456,8 @@ async def graceful_exit(coder=None, exit_code=0):
|
|||
except Exception:
|
||||
pass
|
||||
|
||||
await asyncio.sleep(0.5)
|
||||
# Commenting since this can sometimes case hanging
|
||||
# await asyncio.sleep(0.5)
|
||||
return exit_code
|
||||
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -23,7 +23,10 @@ Homepage = "https://github.com/dwash96/aider-ce"
|
|||
|
||||
[project.scripts]
|
||||
aider-ce = "aider.main:main"
|
||||
cecli = "aider.main:main"
|
||||
"ce" = "aider.main:main"
|
||||
"cecli" = "aider.main:main"
|
||||
"ce-cli" = "aider.main:main"
|
||||
"ce.cli" = "aider.main:main"
|
||||
|
||||
[tool.setuptools.dynamic]
|
||||
dependencies = { file = "requirements/requirements.in" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue