Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 22ccefbc authored by Kostis ANAGNOSTOPOULOS's avatar Kostis ANAGNOSTOPOULOS
Browse files

fix(shell) stop bash escaping vars on TAB

parent 1123d458
No related branches found
No related tags found
No related merge requests found
......@@ -80,6 +80,10 @@ PROMPT_COMMAND="history -a"
## Don't put duplicate lines or lines starting with space in the history.
## Ignore 1-char cmds
HISTIGNORE=?:?
## Stop BDAP from escaping variables when pressing TAB.
# It removes also some questionable autocompleton "intelligence"...
# from: https://askubuntu.com/a/1175329/251379
shopt -u progcomp
EOF
echo "UPDATED"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment