Replace tr invocations

This commit is contained in:
Fabian Homborg
2016-02-03 23:46:33 +01:00
parent fcdc6a48c0
commit cadb5d51ea
4 changed files with 5 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ function __fish_complete_subcommand -d "Complete subcommand" --no-scope-shadowi
switch "$argv[1]"
case '--fcs-skip=*'
set -l rest
echo $argv[1] | tr = ' ' | read test skip_next
string replace -a = ' ' -- $argv[1] | read test skip_next
set -e argv[1]
end