2
2
réplica de https://github.com/Hilbis/Hilbish sincronizado 2025-07-18 16:52:02 +00:00

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

Este cometimento está contido em:
TorchedSammy 2022-02-27 19:19:00 -04:00
ascendente 994daba078
cometimento f26931d4cb
Assinados por: sammyette
ID da chave GPG: 904FC49417B44DCD

Ver ficheiro

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