From 300a8b8fce5d65aaf30e94dd56a295d0a59e2ec2 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 10 May 2023 10:49:26 -0700 Subject: [PATCH] wip: Added Commands class with help and ls methods. --- aider/getinput.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/aider/getinput.py b/aider/getinput.py index bccaf0245..b7f58354f 100644 --- a/aider/getinput.py +++ b/aider/getinput.py @@ -12,6 +12,12 @@ import sys import time import random +class Commands: + def help(self): + print('help') + def ls(self): + print('ls') + class FileContentCompleter(Completer): def __init__(self, fnames):