diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2017-02-12 23:17:39 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2017-02-12 23:17:39 +1300 |
commit | 245c2d6647e34fb432066360499ed02c5711271c (patch) | |
tree | a6108ddf2cd105fccb9c1d8fa9b3d8b256034f17 /bash | |
parent | More accurate commend for hostcomplete (turn off) (diff) | |
download | dotfiles-245c2d6647e34fb432066360499ed02c5711271c.tar.gz dotfiles-245c2d6647e34fb432066360499ed02c5711271c.zip |
Use backslash to escape single char
Diffstat (limited to 'bash')
-rw-r--r-- | bash/bashrc.d/completion.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bash/bashrc.d/completion.bash b/bash/bashrc.d/completion.bash index 51de24b8..92e0ce0a 100644 --- a/bash/bashrc.d/completion.bash +++ b/bash/bashrc.d/completion.bash @@ -37,8 +37,8 @@ complete -A variable for getopts let read select complete -A helptopic help # Jobspecs -complete -P '%' -A job disown fg jobs -complete -P '%' -A stopped bg +complete -P \% -A job disown fg jobs +complete -P \% -A stopped bg # Readline bindings complete -A binding bind |