diff --git a/.DS_Store b/.DS_Store index 5398f67..b845ba0 100644 Binary files a/.DS_Store and b/.DS_Store differ 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" )