mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 22:34:59 +00:00
Add method to check for URLs in input.
This commit is contained in:
parent
cdf4969c01
commit
aca24976a7
1 changed files with 7 additions and 0 deletions
|
@ -575,6 +575,13 @@ class Coder:
|
||||||
return self.commands.run(inp)
|
return self.commands.run(inp)
|
||||||
|
|
||||||
self.check_for_file_mentions(inp)
|
self.check_for_file_mentions(inp)
|
||||||
|
inp = self.check_for_urls(inp)
|
||||||
|
|
||||||
|
return inp
|
||||||
|
|
||||||
|
def check_for_urls(self, inp):
|
||||||
|
# todo use a regex to find all urls in inp
|
||||||
|
|
||||||
return inp
|
return inp
|
||||||
|
|
||||||
def keyboard_interrupt(self):
|
def keyboard_interrupt(self):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue