2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-03 04:03:25 +00:00

fix: add missing comma in escape list for file completions and add more cases

This commit is contained in:
TorchedSammy 2022-02-27 19:19:00 -04:00
parent 994daba078
commit f26931d4cb
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD

View File

@ -32,6 +32,10 @@ func matchPath(path, pref string) ([]string, error) {
"'", "\\'", "'", "\\'",
"`", "\\`", "`", "\\`",
" ", "\\ ", " ", "\\ ",
"(", "\\(",
")", "\\)",
"[", "\\[",
"]", "\\]"
} }
r := strings.NewReplacer(args...) r := strings.NewReplacer(args...)