From 169929f5775f0cfcf7510a0e3ee20ab18555c4fd Mon Sep 17 00:00:00 2001 From: Alexandre1a Date: Mon, 14 Apr 2025 15:19:33 +0200 Subject: [PATCH] Added a Todo --- .DS_Store | Bin 6148 -> 6148 bytes README.md | 3 +++ main.go | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.DS_Store b/.DS_Store index 5398f67abf6acec960706519687113062e8bb332..b845ba04afca65c07f642893b3cd24dd9948f355 100644 GIT binary patch delta 112 zcmZoMXffEJ#uU3dl!1YPg+Y%YogtH0`0O!9RQVLV@&y@& a!O8i#1wcJOQzuMrW>R7l*u0D>P80x*ZXG-T delta 112 zcmZoMXffEJ#uOWOf`Ng7g+Y%YogtH3%H!~?Qa&2D56ekJ*yFMM8 diff --git a/README.md b/README.md index d87e6d7..86a709d 100644 --- a/README.md +++ b/README.md @@ -53,3 +53,6 @@ We can list the fact that interactive programs, like SSH or VIM work partialy. The config has to be manualy created and populated. Also pipes aren't supported yet, so no `ls | grep "thing"` PTY currently don't support signals like 'Ctrl+C' so don't use vim, nano nor nvim for exemple. + +## ToDo +- Tab completion (for cd) diff --git a/main.go b/main.go index 14506a8..cd9fcc4 100644 --- a/main.go +++ b/main.go @@ -28,7 +28,7 @@ type Config struct { // Constantes pour la version et le nom du shell const ( - VERSION = "2.2.0" + VERSION = "2.3.0" SHELL_NAME = "GoShell" )