Skip to content

Replace go-shlex with fork that supports \t #84

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ MIT
## Credits
Library | Use
------- | -----
[github.com/flynn-archive/go-shlex](https://github.com/flynn-archive/go-shlex) | splitting input into command and args.
[github.com/GetStream/go-shlex](https://github.com/GetStream/go-shlex) | splitting input into command and args.
[github.com/chzyer/readline](https://github.com/chzyer/readline) | readline capabilities.


Expand Down
2 changes: 1 addition & 1 deletion completer.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package ishell
import (
"strings"

"github.com/flynn-archive/go-shlex"
"github.com/GetStream/go-shlex"
)

type iCompleter struct {
Expand Down
2 changes: 1 addition & 1 deletion ishell.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (

"github.com/chzyer/readline"
"github.com/fatih/color"
"github.com/flynn-archive/go-shlex"
"github.com/GetStream/go-shlex"
)

const (
Expand Down