Skip to content

Commit 5b692fe

Browse files
committed
[Console] Fix handling of \E in Bash completion
1 parent 7d36330 commit 5b692fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Resources/completion.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ _sf_{{ COMMAND_NAME }}() {
3737

3838
local completecmd=("$sf_cmd" "_complete" "--no-interaction" "-sbash" "-c$cword" "-a{{ VERSION }}")
3939
for w in ${words[@]}; do
40-
w=$(printf -- '%b' "$w")
40+
w="${w//\\\\/\\}"
4141
# remove quotes from typed values
4242
quote="${w:0:1}"
4343
if [ "$quote" == \' ]; then

0 commit comments

Comments
 (0)