mirror of https://github.com/Hilbis/Hilbish
fix: add missing comma in escape list for file completions and add more cases
parent
994daba078
commit
f26931d4cb
|
@ -32,6 +32,10 @@ func matchPath(path, pref string) ([]string, error) {
|
||||||
"'", "\\'",
|
"'", "\\'",
|
||||||
"`", "\\`",
|
"`", "\\`",
|
||||||
" ", "\\ ",
|
" ", "\\ ",
|
||||||
|
"(", "\\(",
|
||||||
|
")", "\\)",
|
||||||
|
"[", "\\[",
|
||||||
|
"]", "\\]"
|
||||||
}
|
}
|
||||||
|
|
||||||
r := strings.NewReplacer(args...)
|
r := strings.NewReplacer(args...)
|
||||||
|
|
Loading…
Reference in New Issue