mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 14:55:00 +00:00
wip: Added Commands class with help and ls methods.
This commit is contained in:
parent
24591473e6
commit
300a8b8fce
1 changed files with 6 additions and 0 deletions
|
@ -12,6 +12,12 @@ import sys
|
||||||
import time
|
import time
|
||||||
import random
|
import random
|
||||||
|
|
||||||
|
class Commands:
|
||||||
|
def help(self):
|
||||||
|
print('help')
|
||||||
|
def ls(self):
|
||||||
|
print('ls')
|
||||||
|
|
||||||
|
|
||||||
class FileContentCompleter(Completer):
|
class FileContentCompleter(Completer):
|
||||||
def __init__(self, fnames):
|
def __init__(self, fnames):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue