Fix #168 and #130: Escape tildes when fetching suggestions

This commit is contained in:
Eric Freese 2016-06-10 13:19:30 -06:00
commit b4b3a82ee3
3 changed files with 9 additions and 2 deletions

View file

@ -17,5 +17,5 @@ _zsh_autosuggest_escape_command() {
setopt localoptions EXTENDED_GLOB
# Escape special chars in the string (requires EXTENDED_GLOB)
echo -E "${1//(#m)[\\()\[\]|*?]/\\$MATCH}"
echo -E "${1//(#m)[\\()\[\]|*?~]/\\$MATCH}"
}