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:
parent
994daba078
commit
f26931d4cb
@ -32,6 +32,10 @@ func matchPath(path, pref string) ([]string, error) {
|
||||
"'", "\\'",
|
||||
"`", "\\`",
|
||||
" ", "\\ ",
|
||||
"(", "\\(",
|
||||
")", "\\)",
|
||||
"[", "\\[",
|
||||
"]", "\\]"
|
||||
}
|
||||
|
||||
r := strings.NewReplacer(args...)
|
||||
|
Loading…
x
Reference in New Issue
Block a user