Skip to content
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

Add support for implicit $@ #30

Merged
merged 3 commits into from
Nov 18, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix expansion by removing double quotes
Neved4 committed Nov 15, 2024
commit 0b5c65b5cdc8232ce77a1f50483fe24dc9882dd7
2 changes: 1 addition & 1 deletion translate/translate.go
Original file line number Diff line number Diff line change
@@ -201,7 +201,7 @@ func (t *Translator) command(c syntax.Command) {
t.word(w, false)
}
} else {
t.str(" in \"$argv\"")
t.str(" in $argv")
}

default: