'main': Following up to the last commit, also highlight braced parameter expansions: «${foo}».

This commit is contained in:
Daniel Shahaf 2017-12-25 05:20:40 +00:00 committed by Matthew Martin
commit dbdebfaaa5
2 changed files with 8 additions and 2 deletions

View file

@ -36,5 +36,5 @@ BUFFER='$PWD; ${PWD}'
expected_region_highlight=(
"1 4 path" # $PWD
"5 5 commandseparator" # ;
"7 12 unknown-token" # ${PWD}
"7 12 path" # ${PWD}
)