2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-02 03:33:22 +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...)