gitextract_ws_eknom/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ └── workflows/ │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── cfg/ │ └── cfg.go ├── command/ │ ├── alias.go │ ├── check.go │ ├── check_test.go │ ├── current.go │ ├── current_test.go │ ├── deactivate.go │ ├── deactivate_test.go │ ├── fileiter/ │ │ ├── iterator.go │ │ └── iterator_test.go │ ├── init.go │ ├── init_test.go │ ├── install.go │ ├── install_test.go │ ├── link.go │ ├── ls-alias.go │ ├── ls-remote.go │ ├── ls.go │ ├── uninstall.go │ ├── use.go │ ├── use_test.go │ └── which.go ├── go.mod ├── go.sum ├── index.json ├── install.ps1 ├── install.sh ├── jabba.go ├── jabbaw ├── jabbaw.md ├── jabbaw.ps1 ├── semver/ │ ├── range.go │ ├── range_test.go │ ├── version.go │ └── version_test.go └── w32/ ├── w32.go ├── w32_darwin.go ├── w32_linux.go └── w32_windows.go